├── README.md ├── __init__.py ├── bussinses └── funnicgong.py ├── case ├── __init__.py ├── login_test.py ├── xiugai_test.py ├── zhaohui_test.py └── zhuce_test.py ├── config.py ├── data ├── case.xlsx └── page_data.yaml ├── geckodriver.log ├── logco └── 2018032418.log ├── report └── 2018-03-24_18_43.html ├── resultpang └── login1.png ├── run.py ├── suite ├── __init__.py └── testsuite.py └── util ├── BSTestRunner.py ├── HTMLTestRunner.py ├── gettestdata.py ├── log.py └── selse_feng.py /README.md: -------------------------------------------------------------------------------- 1 | # python+selenium +HTMLTestRunner自动化测试 2 | ## python 3 +selenium3 +HTMLTestRunner(python3版本) 3 | ### 使用的框架是python自带的unittest。使用ddt数据驱动,Excel管理测试用例 4 | ### bussinses 公共的逻辑模块编写 5 | ### data存放测试用例,界面定位元素 6 | ### report存放测试报告 7 | ### case存放测试用例。 8 | ### log 存放测试过程中的测试日志 9 | ### resultpang存放测试过程中的截图 10 | ### suite 测试用例集 11 | ### util 公共模块 12 | ### run.py 执行脚本。 13 |  14 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | """ 3 | @author: lileilei 4 | @file: __init__.py 5 | @time: 2018/3/24 18:40 6 | """ -------------------------------------------------------------------------------- /bussinses/funnicgong.py: -------------------------------------------------------------------------------- 1 | import yaml,os 2 | path=os.getcwd() 3 | from util import log 4 | class Login_tes:#登录模块封装 5 | def __init__(self,driver):# 6 | self.driber=driver 7 | self.logs = log.log_message() 8 | self.file=open(path+"\\data\\page_data.yaml", "r",encoding= "utf-8") 9 | self.data=yaml.load(self.file) 10 | self.file.close() 11 | self.lo_url=self.data['login'].get('url') 12 | self.denglu=self.data['login'].get('denglu') 13 | self.username=self.data['login'].get('name') 14 | self.password=self.data['login'].get('password') 15 | self.sub=self.data['login'].get('denglu_btm') 16 | self.lo_err=self.data['login'].get('login_err') 17 | self.lo_suc=self.data['login'].get('login_suc') 18 | self.driber.get(self.lo_url) 19 | def login(self,suc,name,password): 20 | try: 21 | self.driber.find_element_by_link_text(self.denglu).click() 22 | self.driber.find_element_by_id(self.username).clear() 23 | self.driber.find_element_by_id(self.username).send_keys(name) 24 | self.driber.find_element_by_id(self.password).click() 25 | self.driber.find_element_by_id(self.password).send_keys(password) 26 | self.driber.find_element_by_id(self.sub).click() 27 | if suc=='1': 28 | self.login_su = self.driber.find_element_by_xpath(self.lo_suc).text 29 | return self.login_su 30 | if suc=='0': 31 | self.login_err=self.driber.find_element_by_xpath(self.lo_err).text 32 | except Exception as e: 33 | self.logs.error_log('用例执行失败,原因:%s'%e) 34 | finally: 35 | self.driber.quit() 36 | class Zhuce_tes:#注册模块的封装 37 | def __init__(self,driver): 38 | self.deriver=driver 39 | title = '注册模块' 40 | self.logs = log.log_message() 41 | self.file1=open(path+"\\data\\page_data.yaml", "r",encoding= "utf-8") 42 | self.data=yaml.load(self.file1) 43 | self.file1.close() 44 | self.zhu_url=self.data['zhuce'].get('url') 45 | self.zhu=self.data['zhuce'].get('zhuc') 46 | self.zhu_user=self.data['zhuce'].get('username') 47 | self.zhu_pwd=self.data['zhuce'].get('password') 48 | self.zhu_qpwd=self.data['zhuce'].get('querenpass') 49 | self.zhu_shouji=self.data['zhuce'].get('shouji') 50 | self.zhu_email=self.data['zhuce'].get('youxiang') 51 | self.zhu_butn=self.data['zhuce'].get('tijiao_btn') 52 | self.zhu_suc=self.data['zhuce'].get('zhuce_suc') 53 | self.zhu_err=self.data['zhuce'].get('zhuce_err') 54 | self.deriver.get(self.zhu_url) 55 | def zhuce(self,suc,name,password,password1,shouji,email): 56 | try: 57 | self.deriver.find_element_by_link_text(self.zhu).click() 58 | self.deriver.find_element_by_class_name(self.zhu_user).clear() 59 | self.deriver.find_element_by_class_name(self.zhu_user).send_keys(name) 60 | self.deriver.find_element_by_class_name(self.zhu_pwd).clear() 61 | self.deriver.find_element_by_class_name(self.zhu_pwd).send_keys(password) 62 | self.deriver.find_element_by_class_name(self.zhu_qpwd).clear() 63 | self.deriver.find_element_by_class_name(self.zhu_qpwd).send_keys(password1) 64 | self.deriver.find_element_by_class_name(self.zhu_shouji).clear() 65 | self.deriver.find_element_by_class_name(self.zhu_shouji).send_keys(shouji) 66 | self.deriver.find_element_by_class_name(self.zhu_email).clear() 67 | self.deriver.find_element_by_class_name(self.zhu_email).send_keys(email) 68 | self.deriver.find_element_by_class_name(self.zhu_butn).click() 69 | if suc =="1": 70 | self.zhu_su=self.deriver.find_element_by_id(self.zhu_suc).text 71 | return self.zhu_su 72 | if suc=='0': 73 | self.zhu_e=self.deriver.find_element_by_xpath(self.zhu_err).text 74 | return self.zhu_e 75 | except Exception as e: 76 | self.logs.error_log('用例执行失败,原因:%s' % e) 77 | finally: 78 | self.deriver.quit() 79 | class Zaohui_tes: 80 | def __init__(self,driver): 81 | self.driver=driver 82 | self.logs = log.log_message() 83 | self.file1=open(path+"\\data\\page_data.yaml", "r",encoding= "utf-8") 84 | self.data=yaml.load(self.file1) 85 | self.file1.close() 86 | self.zhao_url=self.data['zhaohui'].get('url') 87 | self.zhao_username=self.data['zhaohui'].get('username') 88 | self.zhao_btn=self.data['zhaohui'].get('zhaohui_btn') 89 | self.zhao_err=self.data['zhaohui'].get('zhaohui_err') 90 | self.zhao_suc=self.data['zhaohui'].get('zhaohui_suc') 91 | self.driver.get(self.zhao_url) 92 | def zhaohui(self,suc,name,eamil): 93 | try: 94 | self.driver.find_element_by_css_selector(self.zhao_username).clear() 95 | self.driver.find_element_by_css_selector(self.zhao_username).sned_keys(name) 96 | self.driver.find_element_by_css_selector(self.zhao_eamil).clear() 97 | self.driver.find_element_by_css_selector(self.zhao_eamil).sned_keys(eamil) 98 | self.driver.find_element_by_css_selector(self.zhao_btn).click() 99 | if suc == '1': 100 | self.zhao_su=self.driver.find_element_by_css_selector(self.zhao_suc).text 101 | return self.zhao_su 102 | if suc =="0": 103 | self.zhao_er=self.driver.find_element_by_xpath(self.zhao_err).text 104 | return self.zhao_er 105 | except Exception as e: 106 | self.logs.error_log('用例执行失败,原因:%s' % e) 107 | finally: 108 | self.driver.quit() 109 | class Rest_tes: 110 | def __init__(self,driver): 111 | self.driver=driver 112 | self.logs = log.log_message() 113 | self.file1=open(path+"\\data\\page_data.yaml", "r",encoding= "utf-8") 114 | self.data=yaml.load(self.file1) 115 | self.file1.close() 116 | self.rest_url=self.data['reset_pwd'].get('url') 117 | self.rest_eamil=self.data['reset_pwd'].get('email') 118 | self.reset_yan=self.data['reset_pwd'].get('yanzheng') 119 | self.reset_mima=self.data['reset_pwd'].get('mima') 120 | self.reset_mimaque=self.data['reset_pwd'].get('chongzhimima') 121 | self.reset_btn=self.data['reset_pwd'].get('reset_btn') 122 | self.reset_error=self.data['reset_pwd'].get('reset_error') 123 | self.reset_suc=self.data['reset_pwd'].get('reset_suc') 124 | self.driver.get(self.rest_url) 125 | def rest(self,suc,yan,eamil,mima,chongzhimima): 126 | try: 127 | self.driver.find_element_by_css_selector(self.rest_eamil).clear() 128 | self.driver.find_element_by_css_selector(self.rest_eamil).sned_keys(eamil) 129 | self.driver.find_element_by_css_selector(self.reset_yan).clear() 130 | self.driver.find_element_by_css_selector(self.reset_yan).sned_keys(yan) 131 | self.driver.find_element_by_css_selector(self.reset_mima).clear() 132 | self.driver.find_element_by_css_selector(self.reset_mima).sned_keys(mima) 133 | self.driver.find_element_by_css_selector(self.reset_mimaque).clear() 134 | self.driver.find_element_by_css_selector(self.reset_mimaque).sned_keys(chongzhimima) 135 | self.driver.find_element_by_css_selector(self.reset_btn).click() 136 | if suc =="1": 137 | self.rest_su=self.driver.find_element_by_id(self.reset_suc).text 138 | return self.rest_su 139 | if suc=='0': 140 | self.rest_err=self.driver.find_element_by_xpath(self.reset_error).text 141 | return self.rest_err 142 | except Exception as e: 143 | self.logs.error_log('用例执行失败,原因:%s' % e) 144 | finally: 145 | self.driver.quit() 146 | class Xiugai_tes: 147 | def __init__(self,driver): 148 | title = '修改模块' 149 | self.logs = log.log_message() 150 | self.driver=driver 151 | self.file1=open(path+"\\data\\page_data.yaml", "r",encoding= "utf-8") 152 | self.data=yaml.load(self.file1) 153 | self.file1.close() 154 | self.xiugai_url=self.data['xiugai'].get('url') 155 | self.xiugai_yuan=self.data['xiugai'].get('yuanmi') 156 | self.xiugai_mima=self.data['xiugai'].get('xiugaimi') 157 | self.xiugai_mimaque=self.data['xiugai'].get('xiugaimi1') 158 | self.xiugai_btn=self.data['xiugai'].get('xiugai_but') 159 | self.xiugai_suc=self.data['xiugai'].get('xiu_suc') 160 | self.xiugai_error=self.data['xiugai'].get('xiu_err') 161 | self.driver.get(self.xiugai_url) 162 | def xiugai(self,suc,yuanmima,mima,querenmima): 163 | try: 164 | self.driver.find_element_by_css_selector(self.xiugai_yuan).clear() 165 | self.driver.find_element_by_css_selector(self.xiugai_yuan).sned_keys(yuanmima) 166 | self.driver.find_element_by_css_selector(self.xiugai_mima).clear() 167 | self.driver.find_element_by_css_selector(self.xiugai_mima).sned_keys(mima) 168 | self.driver.find_element_by_css_selector(self.xiugai_mimaque).clear() 169 | self.driver.find_element_by_css_selector(self.xiugai_mimaque).sned_keys(querenmima) 170 | self.driver.find_element_by_link_text(self.xiugai_btn).click() 171 | if suc=='1': 172 | self.xiugai_su = self.driver.find_element_by_id(self.xiugai_suc).text 173 | return self.xiugai_su 174 | if suc=='0': 175 | self.xiugai_erro=self.driver.find_element_by_xpath(self.xiugai_error).text 176 | return self.xiugai_erro 177 | except Exception as e: 178 | self.logs.error_log('用例执行失败,原因:%s' % e) 179 | finally: 180 | self.driver.quit() -------------------------------------------------------------------------------- /case/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liwanlei/python-selenium/b141331777dcfc33021dbb2565f9649d83bf78c0/case/__init__.py -------------------------------------------------------------------------------- /case/login_test.py: -------------------------------------------------------------------------------- 1 | from bussinses.funnicgong import Login_tes 2 | import ddt,unittest,os 3 | from util import log 4 | from selenium import webdriver 5 | from util.gettestdata import huoqu_test 6 | path=os.getcwd() 7 | case_path=path+'\\data\\case.xlsx' 8 | casedata=huoqu_test(case_path,3) 9 | @ddt.ddt 10 | class Testlogin(unittest.TestCase): 11 | def setUp(self): 12 | self.logs=log.log_message() 13 | self.derve=webdriver.Firefox() 14 | self.login_fun=Login_tes(self.derve) 15 | @ddt.data(*casedata) 16 | def test_login1(self,casedata): 17 | self.name=casedata['username'] 18 | self.pwd=casedata['pwd'] 19 | self.suc=casedata['suc'] 20 | self.assert_value = casedata['assert'] 21 | self.derve.get_screenshot_as_file(path+'\\resultpang\\%s.png'%casedata) 22 | self.logs.info_log('input data:name:%s,pwd:%s,suc:%s,assert:%s' % (self.name, self.pwd, self.suc, self.assert_value)) 23 | self.re_data = self.login_fun.login( self.suc,self.name, self.pwd) 24 | self.assertEqual(self.re_data, self.assert_value) 25 | def tearDown(self): 26 | self.derve.quit() 27 | -------------------------------------------------------------------------------- /case/xiugai_test.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : leizi 3 | from bussinses.funnicgong import Xiugai_tes 4 | from selenium import webdriver 5 | import unittest,time,os,ddt 6 | from util import log 7 | from util.gettestdata import huoqu_test 8 | path=os.getcwd() 9 | case_path=path+'\\data\\case.xlsx' 10 | casedata=huoqu_test(case_path,3) 11 | @ddt.ddt 12 | class Test_xiugai(unittest.TestCase): 13 | def setUp(self): 14 | self.logs = log.log_message() 15 | self.derve=webdriver.Fi() 16 | self.xiugai_fun=Xiugai_tes(self.derve) 17 | @ddt.data(*casedata) 18 | def test_xiugai_1(self,casedata): 19 | self.password=casedata['yuanmi'] 20 | self.xiugaimi=casedata['xiugaimi'] 21 | self.xiugaimi1=casedata['xiugaimi1'] 22 | self.suc=casedata['suc'] 23 | self.assert_vale=casedata['assert_vale'] 24 | self.return_data=self.xiugai_fun.xiugai(self.suc,self.password,self.xiugaimi,self.xiugaimi1) 25 | self.logs.info_log("input: password:%s,xiugaimima:%s,xiugaimima1:%s,assert:%s"%(self.password,self.xiugaimi,self.xiugaimi1,self.assert_vale)) 26 | time.sleep(1) 27 | self.assertAlmostEqual(self.return_data,self.assert_vale) 28 | def tearDown(self): 29 | self.derve.quit() 30 | -------------------------------------------------------------------------------- /case/zhaohui_test.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : leizi 3 | from bussinses.funnicgong import Zaohui_tes 4 | import unittest,time,os,ddt 5 | from util import log 6 | from selenium import webdriver 7 | from util.gettestdata import huoqu_test 8 | path=os.getcwd() 9 | case_path=path+'\\data\\case.xlsx' 10 | casedata=huoqu_test(case_path,2) 11 | @ddt.ddt 12 | class Testzhaohui(unittest.TestCase): 13 | def setUp(self): 14 | self.logs = log.log_message() 15 | self.derve=webdriver.Firefox() 16 | self.zhaohui_fun=Zaohui_tes(self.derve) 17 | @ddt.data(*casedata) 18 | def test_zhaohui_1(self,casedata): 19 | self.username=casedata['username'] 20 | self.email=casedata['email'] 21 | self.suc=casedata['suc'] 22 | self.assert_vale=casedata['assert_vale'] 23 | self.retu_data=self.zhaohui_fun.zhaohui(self.username,self.email,self.suc) 24 | self.derve.get_screenshot_as_file(path+'\\resultpang\\%s.png'%casedata['id']) 25 | self.logs.info_log('inptut name:%s,email:%s,assert:%s'%(self.username,self.email,self.assert_vale)) 26 | time.sleep(1) 27 | self.assertEqual(self.retu_data, self.assert_vale) 28 | def tearDown(self): 29 | self.derve.quit() -------------------------------------------------------------------------------- /case/zhuce_test.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : leizi 3 | from bussinses.funnicgong import Zhuce_tes 4 | import unittest,time,os,ddt 5 | from util import log 6 | from selenium import webdriver 7 | path=os.getcwd() 8 | from util.gettestdata import huoqu_test 9 | case_path=path+'\\data\\case.xlsx' 10 | casedata=huoqu_test(case_path,1) 11 | @ddt.ddt 12 | class Testzhuce(unittest.TestCase): 13 | def setUp(self): 14 | self.logs = log.log_message() 15 | self.derve=webdriver.Firefox() 16 | self.zhuce_fun=Zhuce_tes(self.derve) 17 | @ddt.data(*casedata) 18 | def test_zhuce_1(self,casedata): 19 | self.name=casedata['username'] 20 | self.password=casedata['mima'] 21 | self.passwordque=casedata['nima2'] 22 | self.shoujihao=casedata['shoujihao'] 23 | self.youxiang=casedata['youxiang'] 24 | self.suc=casedata['suc'] 25 | self.assert_vale=casedata['assert_vale'] 26 | self.re_data=self.zhuce_fun.zhuce(self.name,self.password,self.passwordque,self.shoujihao,self.youxiang,self.suc) 27 | self.derve.get_screenshot_as_file(path+'\\resultpang\\%s.png'%casedata[id]) 28 | self.logs.info_log("input:name:%s password:%s,passwordque:%s,shoujihao:%s,youxiang:%s ,assert:%s"%(self.name,self.password,self.passwordque,self.shoujihao,self.youxiang,self.assert_vale)) 29 | time.sleep(1) 30 | self.assertEqual(self.re_data, self.assert_vale) 31 | def tearDown(self): 32 | self.derve.quit() -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | """ 3 | @author: lileilei 4 | @file: config.py 5 | @time: 2018/3/24 18:39 6 | """ 7 | description='测试结果' #测试报告需要的描述 8 | reporttitle='自动化测试报告' #测试报告需要的title 9 | liulanqi='Firefox'#测试所需要的浏览器 -------------------------------------------------------------------------------- /data/case.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liwanlei/python-selenium/b141331777dcfc33021dbb2565f9649d83bf78c0/data/case.xlsx -------------------------------------------------------------------------------- /data/page_data.yaml: -------------------------------------------------------------------------------- 1 | login: 2 | url: "http://127.0.0.1:8000/" 3 | denglu: "请登录" 4 | name: "firstname" 5 | password: "inputPassword" 6 | denglu_btm: "denglu" 7 | login_err: "/html/body/form/div[4]/div/h4[2]" 8 | login_suc: "/html/body/nav/div/div[2]/ul/div/ul/li[3]/a/span" 9 | zhuce: 10 | url: "http://127.0.0.1:8000/" 11 | zhuc: "注册" 12 | username: "username" #class 13 | password: "password" #class 14 | querenpass: "password1" #class 15 | shouji: "shouji" #class 16 | youxiang: "email" #class 17 | tijiao_btn: "submit" #class 18 | zhuce_err: "/html/body/form/div[6]/div/h4" #xpath 19 | zhuce_suc: "denglu" #id 20 | zhaohui: 21 | url: "http://127.0.0.1:8000/reset_pwd" 22 | username: 'input[name=\"firstname\"]' 23 | email: 'input[name=\"email\"]' 24 | zhaohui_btn: 'input[type=\"submit\"]' 25 | zhaohui_err: "/html/body/form/div[3]/div/h4" #xpath 26 | zhaohui_suc: 'input[type=\"submit\"]' #css 27 | reset_pwd: 28 | url: "http://127.0.0.1:8000/ret_passord" 29 | email: 'input[name=\"email\"]' 30 | yanzheng: 'input[name=\"yanzhengma\"]' 31 | mima: 'input[name=\"inputPassword\"]' 32 | chongzhimima: 'input[name=\"inputPassword1\"]' 33 | reset_btn: 'input[type=\"submit\"]' 34 | reset_error: "/html/body/form/div[5]/div/h4" 35 | reset_suc: "denglu" #id 36 | xiugai: 37 | url: "http://127.0.0.1:8000/xiugaimima" 38 | yuanmi: 'input[type=\"pass_yuan\"]' 39 | xiugaimi: 'input[type=\"inputPassword\"]' 40 | xiugaimi1: 'input[type=\"inputPassword1\"]' 41 | xiugai_but: "修改密码" 42 | xiu_err: "/html/body/form/div[4]/div/h4" 43 | xiu_suc: "denglu"#id 44 | xiebo: 45 | url: "http://127.0.0.1:8000/xiebo" 46 | biaoti: 'input[type=\"biaoti1\"]' 47 | neirong: "comment_textarea"#classname 48 | fenlei: "jumpMenu" #id 49 | fenlei1: "/html/body/div/div/div[1]/div/div[2]/form/div[4]/select/option[2]" #git xpath 50 | biaoqian: "biaoqian" #id 51 | bianqian1: 'input[value=\"python\"]' 52 | tuijian: 'input[name=\"tuijian\"]' 53 | xiebo_btn: 'input[type=\"submit\"]' 54 | xiebo_err: "/html/body/div/div/div[1]/div/div[2]/form/h4" 55 | xiebo_suc: "/html/body/div/div/div[1]/div/div[3]/h4" -------------------------------------------------------------------------------- /geckodriver.log: -------------------------------------------------------------------------------- 1 | 2 | 1521884158742 Marionette INFO Listening on port 62213 3 | 1521884159015 Marionette WARN TLS certificate errors will be ignored for this session 4 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 5 | [Child 29508, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 6 | [Child 29508, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 7 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 8 | [Child 29672, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 9 | [Child 29672, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 10 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 11 | [Child 25768, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 12 | [Child 25768, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 13 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 14 | [GPU 30284, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 15 | 16 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 17 | 18 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 19 | a DXGI adapter 20 | [GFX1-]: Could not get a DXGI adapter 21 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 22 | [Child 30096, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 23 | [Child 30096, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 24 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 25 | [Child 30324, ChromUnable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 26 | [Parent 31532, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 27 | [Parent 31532, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 28 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 29 | [Child 30864, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 30 | [Child 30864, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 31 | JavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this._builder is undefined 32 | [Parent 31532, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 33 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 34 | [Child 28368, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 35 | 36 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 37 | 38 | shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///C:/Program%20Files/Mozilla%20Firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4406 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2270 39 | 1521884219186 Marionette WARN TLS certificate errors will be ignored for this session 40 | 1521884220458 geckodriver INFO geckodriver 0.19.1 41 | 1521884220471 geckodriver INFO Listening on 127.0.0.1:62452 42 | 1521884222884 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.sdxOFSwC2Eba" 43 | 1521884224371 Marionette INFO Enabled via --marionette 44 | 1521884226657 Marionette INFO Listening on port 62460 45 | 1521884227092 Marionette WARN TLS certificate errors will be ignored for this session 46 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 47 | [Child 30032, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 48 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 49 | [Child 32320, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 50 | [Child 32320, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 51 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 52 | [Child 30436, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 53 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 54 | [GPU 30768, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 55 | 56 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 57 | 58 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 59 | Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 60 | JavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this._builder is undefined 61 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 62 | [Child 30420, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 63 | [Child 30420, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 64 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 65 | [GPU 30212, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 66 | 67 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 68 | 69 | omium/src/chrome/common/ipc_channel_win.cc, line 346 70 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 71 | [Child 33728, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 72 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 73 | [Child 33436, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 74 | [Child 33436, Chrome_ChildThread] WARNING: pipe error: 109: file[Child 24688, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/sUnable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 75 | JavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this._builder is undefined 76 | [Parent 32812, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 77 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 78 | [Child 33232, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 79 | [Child 33232, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 80 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 81 | [GPU 33092, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 82 | 83 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 84 | 85 | trator\AppData\Local\openvr\openvrpaths.vrpath 86 | [Parent 6944, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 87 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 88 | [Child 34044, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 89 | [Child 34044, Chrome_ChUnable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 90 | [Child 34768, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 91 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 92 | [Child 34864, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 93 | [Child 34864, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 94 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 95 | [Child 29572, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 96 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 97 | [GPU 34196, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 98 | 99 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 100 | 101 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 102 | ###!!! [Child][MessageChannel] Error: (msgtype=0x42001A,name=PGPU::Msg_InitCrashReporter) Closed channel: cannot send/recv 103 | 104 | 1521884334343 Marionette INFO Listening on port 62752 105 | 1521884334409 Marionette WARN TLS certificate errors will be ignored for this session 106 | [GFX1-]: Could not get a DXGI adapter 107 | [GFX1-]: Could not get a DXGI adapter 108 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 109 | [Parent 35408, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 110 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 111 | [Child 35760, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 112 | [Child 35760, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 113 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 114 | [Child 35736, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 115 | [Child 35736, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 116 | z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 117 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 118 | [Child 36776, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 119 | [Child 36776, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 120 | JavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this._builder is undefined 121 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 122 | [Child 36192, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 123 | [Child 36192, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 124 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 125 | [GPU 36064, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 126 | 127 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 128 | 129 | line 346 130 | [Child 37244, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 131 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 132 | [Child 37336, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 133 | [Parent 35888, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 134 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 135 | [Child 36636, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 136 | [Child 36636, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 137 | 1521884528434 geckodriver INFO geckodriver 0.19.1 138 | 1521884528449 geckodriver INFO Listening on 127.0.0.1:63199 139 | 1521884531330 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.QFgNPUVNk8gn" 140 | 1521884533107 Marionette INFO Enabled via --marionette 141 | 1521884535626 Marionette INFO Listening on port 63209 142 | 1521884536683 Marionette WARN TLS certificate errors will be ignored for this session 143 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 144 | [Child 34732, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 145 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 146 | [Child 33612, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 147 | [Child 33612, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 148 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 149 | [Child 29728, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 150 | *** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 151 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 152 | [GPU 36220, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 153 | 154 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 155 | 156 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 157 | uild/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 158 | 159 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 160 | 161 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 162 | m/src/chrome/common/ipc_channel_win.cc, line 346 163 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 164 | [Child 35612, Chrome_C1521884575409 Marionette INFO Listening on port 63388 165 | 1521884575705 Marionette WARN TLS certificate errors will be ignored for this session 166 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 167 | [Parent 33232, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 168 | [Parent 33232, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 169 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 170 | [Child 33872, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 171 | [Child 33872, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 172 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 173 | [Child 30108, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 174 | [Child 30108, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 175 | Unable to 1521884583847 Marionette INFO Listening on port 63428 176 | 1521884583963 Marionette WARN TLS certificate errors will be ignored for this session 177 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 178 | [Child 31124, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 179 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 180 | [Child 36384, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 181 | [Child 36384, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 182 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 183 | [Child 29916, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 184 | [Child 29916, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 185 | *** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 186 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 187 | [GPU 36948, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 188 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 189 | [Parent 32536, Gecko_IOThread] WARNING: pipe error: 232: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 513 190 | 191 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 192 | 193 | jar:file:///C:/Program%20Files/Mozilla%20Firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4406 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2270 194 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 195 | [Child 34436, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 196 | [Child 34436, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 197 | Promise rejected while context is inactive: Message manager disconnected 198 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 199 | [Child 36500, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 200 | [Child 36500, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 201 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 202 | [Child 30036, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 203 | [Child 30036, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 204 | *** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 205 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 206 | [GPU 35064, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 207 | 208 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 209 | 210 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 211 | 1521884594979 geckodriver INFO geckodriver 0.19.1 212 | 1521884594995 geckodriver INFO Listening on 127.0.0.1:63494 213 | 1521884598024 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.wOAKVKhXXyEi" 214 | 1521884599218 Marionette INFO Enabled via --marionette 215 | 1521884601634 Marionette INFO Listening on port 63504 216 | 1521884601724 Marionette WARN TLS certificate errors will be ignored for this session 217 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 218 | [Child 361521884606322 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.NQ63xYZQk80F" 219 | 1521884607526 Marionette INFO Enabled via --marionette 220 | 1521884609640 Marionette INFO Listening on port 63542 221 | 1521884609974 Marionette WARN TLS certificate errors will be ignored for this session 222 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 223 | [Parent 35952, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 224 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 225 | [Child 33980, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 226 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 227 | [Child 29540, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 228 | [Child 29540, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 229 | [Parent 35952, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 230 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 231 | [Child 37404, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 232 | [Child 37404, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 233 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 234 | [GPU 29192, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 235 | 236 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 237 | 238 | ING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 239 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 240 | [Child 36092, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/1521884625900 Marionette WARN TLS certificate errors will be ignored for this session 241 | 1521884626360 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 125" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:125 < onAction()@resource://ac*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 242 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 243 | [GPU 31864, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 244 | 245 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 246 | 247 | esource://gre/modules/addons/XPIProvider.jsm -> jar:file:///C:/Program%20Files/Mozilla%20Firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4406 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2270 248 | 1521884626537 geckodriver INFO geckodriver 0.19.1 249 | 1521884626550 geckodriver INFO Listening on 127.0.0.1:63648 250 | 1521884629611 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.CBrQ0DfHFylH" 251 | 1521884630901 Marionette INFO Enabled via --marionette 252 | 1521884632892 Marionette INFO Listening on port 63657 253 | 1521884633342 Marionette WARN TLS certificate errors will be ignored for this session 254 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 255 | [Parent 30732, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 256 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 257 | [Child 29008, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 258 | [Parent 30732, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 259 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 260 | [Child 32936, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 261 | [Child 32936, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 262 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 263 | [GPU 30112, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 264 | 265 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 266 | 267 | r: Unable to fetch oldest profile entry: Error: OS.File has been shut down. Rejecting request to DirectoryIterator_prototype_next 268 | JavaScript error: resource://gre/modules/ProfileAge.jsm, line 176: Error: Unable to fetch oldest profile entry: Error: OS.File has been shut down. Rejecting request to DirectoryIterator_prototype_next 269 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 270 | [GPU 35560, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 271 | 272 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 273 | 274 | 1521884634688 geckodriver INFO geckodriver 0.19.1 275 | 1521884634700 geckodriver INFO Listening on 127.0.0.1:63687 276 | 1521884637746 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.bhtj6ywaKtQz" 277 | 1521884638919 Marionette INFO Enabled via --marionette 278 | 1521884640916 Marionette INFO Listening on port 63697 279 | 1521884641450 Marionette WARN TLS certificate errors will be ignored for this session 280 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 281 | [Child 34116, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 282 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 283 | [Child 35616, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 284 | [Child 35616, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 285 | 286 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 287 | 288 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 289 | ocal\openvr\openvrpaths.vrpath 290 | [Child 31372, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 291 | [Child 31372, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 292 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 293 | [Parent 30868, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 294 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 295 | [Child 28012, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 296 | 297 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 298 | 299 | :/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 300 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 301 | [Child 33032, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 302 | 303 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 304 | 305 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 306 | uild/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 307 | 308 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 309 | 310 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 311 | pc_channel_win.cc, line 346 312 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 313 | [Child 33068, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 314 | [Child 33068, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 315 | [Parent 31516, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 316 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 317 | [Child 33104, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 318 | [Child 33104, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 319 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 320 | [GPU 24092, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 321 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 322 | [Parent 31728, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 323 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 324 | [Child 28292, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 325 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 326 | [Child 38088, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 327 | [Child 38088, Chrom[Parent 38556, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_wiJavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this._builder is undefined 328 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 329 | [Child 35304, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 330 | [Child 35304, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 331 | 332 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 333 | 334 | src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 335 | [Child 39020, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 336 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 337 | [Child 38848, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_chanJavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this._builder is undefined 338 | Unable to read VR Path Registry from C:\Users\AdministratoUnable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 339 | [GPU 38728, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 340 | 09: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 341 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 342 | [GPU 39588, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 343 | 344 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 345 | 346 | trator\AppData\Local\openvr\openvrpaths.vrpath 347 | JavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this.1521885087890 Marionette INFO Enabled via --marionette 348 | [GFX1-]: Failed to connect GPU process 349 | [GFX1-]: [D3D11] failed to get compositor device. 350 | [GFX1-]: [D3D11] Failed to init compositor with reason: FEATURE_FAILURE_D3D11_NO_DEVICE 351 | [GFX1-]: [D3D11] failed to get compositor device. 352 | [GFX1-]: [D3D11] Failed to init compositor with reason: FEATURE_FAILURE_D3D11_NO_DEVICE 353 | [GFX1-]: Could not g[GFX1-]: Could not get a DXGI adapter 354 | et a DXGI adapter 355 | [GFX1-]: Could not get a DXGI adapter 356 | 1521885103271 Marionette INFO Listening on port 64520 357 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 358 | [Child 31284, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 359 | [Child 31284, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 360 | 1521885103328 Marionette WARN TLS certificate errors will be ignored for this session 361 | [GFX1-]: Could not get a DXGI adapter 362 | [GFX1-]: [D3D11] failed to get compositor device. 363 | [GFX1-]: [D3D11] Failed to init compositor with reason: FEATURE_FAILURE_D3D11_NO_DEVICE 364 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 365 | JavaScript error: https://ss1.bdstatic.com/5eN1bjq8AAUYm2zgoY3K/r/www/cache/static/protocol/https/plugins/every_cookie_4644b13.js, line 4: ReferenceError: c is not defined 366 | JavaScript warning: http://www.zzfdc.gov.cn/r/cms/zzfdc/cn/js/jquery-1.9.1.min.js, line 1: Using //@ to indicate sourceMappingURL pragmas is deprecated. Use //# instead 367 | JavaScript warning: http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js, line 1: Using //@ to indicate sourceMappingURL pragmas is deprecated. Use //# instead 368 | JavaScript error: http://bdimg.share.baidu.com/static/api/js/trans/logger.js?v=d16ec0e3.js, line 1: TypeError: n.ajax.request is not a function 369 | JavaScript warning: https://zhidao.baidu.com/question/247312896.html, line 1613: SyntaxError: 09 is not a legal ECMA-262 octal constant 370 | JavaScript warning: http://www.zzfdc.gov.cn/r/cms/zzfdc/cn/js/jquery-1.9.1.min.js, line 1: Using //@ to indicate sourceMappingURL pragmas is deprecated. Use //# instead 371 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 372 | [Parent 42276, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 373 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 374 | [Child 37092, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 375 | [Child 37092, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 376 | [Child 27480, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 377 | [Child 27480, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 378 | 379 | ###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost 380 | 381 | 382 | ###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost 383 | 384 | 385 | ###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost 386 | 387 | 388 | ###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost 389 | 390 | [Parent 42276, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 391 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 392 | [Child 31404, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 393 | 1521887749782 geckodriver INFO geckodriver 0.19.1 394 | 1521887749800 geckodriver INFO Listening on 127.0.0.1:49485 395 | 1521887752847 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.jrFqGa9IwNEq" 396 | 1521887754122 Marionette INFO Enabled via --marionette 397 | 1521887756260 Marionette INFO Listening on port 49499 398 | 1521887756603 Marionette WARN TLS certificate errors will be ignored for this session 399 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 400 | [Parent 36000, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 401 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 402 | [Child 39780, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 403 | [Child 39780, Chrome_CUnable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 404 | [Parent 34428, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 405 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 406 | [Child 35956, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 407 | [Child 35956, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 408 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 409 | [Child 34872, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 410 | [Child 34872, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 411 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 412 | [Child 42068, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 413 | [Child 42068, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 414 | *** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 415 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 416 | [GPU 41892, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 417 | 418 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 419 | 420 | ser/features/activity-stream@mo*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 421 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 422 | [GPU 32696, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 423 | 424 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 425 | 426 | 1521887782921 geckodriver INFO geckodriver 0.19.1 427 | 1521887782934 geckodriver INFO Listening on 127.0.0.1:49662 428 | 1521887785987 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.yyKpOogLtgyA" 429 | 1521887787256 Marionette INFO Enabled via --marionette 430 | 1521887789268 Marionette INFO Listening on port 49676 431 | 1521887789631 Marionette WARN TLS certificate errors will be ignored for this session 432 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 433 | [Child 31936, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 434 | [Child 31936, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 435 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 436 | [Child 38084, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 437 | [Child 38084, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 438 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 439 | [Child 29428, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 440 | [Child 29428, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 441 | *** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 442 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 443 | [GPU 41780, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 444 | 445 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 446 | 447 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 448 | hannel_win.cc, line 346 449 | *** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 450 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 451 | [GPU 29932, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 452 | 453 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 454 | 455 | c_channel_win.cc, line 346 456 | [Parent 29068, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 457 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 458 | [Child 26208, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 459 | [Child 26208, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 460 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 461 | [Child 31880, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 462 | [Parent 29068, Gecko_IOThread] WARNING: p1521887825859 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.EjKTECXZBmnd" 463 | 1521887827280 Marionette INFO Enabled via --marionette 464 | 1521887829152 Marionette INFO Listening on port 49888 465 | 1521887829683 Marionette WARN TLS certificate errors will be ignored for this session 466 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 467 | [Parent 40508, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 468 | [Parent 40508, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 469 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 470 | [Child 36772, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 471 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 472 | [Child 42728, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 473 | [Parent 40508, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 474 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 475 | [Child 34568, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 476 | [Child 34568, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 477 | *** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 478 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 479 | [GPU 41032, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 480 | 481 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 482 | 483 | 1521888232664 geckodriver INFO geckodriver 0.19.1 484 | 1521888232675 geckodriver INFO Listening on 127.0.0.1:50043 485 | 1521888235731 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\rust_mozprofile.pkuS3im2eVQ0" 486 | 1521888236944 Marionette INFO Enabled via --marionette 487 | 1521888239885 Marionette INFO Listening on port 50054 488 | 1521888239933 Marionette WARN TLS certificate errors will be ignored for this session 489 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 490 | [Child 18564, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 491 | [Child 18564, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 492 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 493 | [Child 42916, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 494 | [Child 42916, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 495 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 496 | JavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this._builder is undefined 497 | [Parent 30860, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 498 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 499 | [Child 42200, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 500 | [Child 42200, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 501 | 502 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 503 | 504 | hrome/common/ipc_channel_win.cc, line 346 505 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 506 | [Child 40728, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 507 | [Child 40728, Chrome_Chil 508 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 509 | 510 | n/ipc_channel_win.cc, line 346 511 | JavaScript error: resource:///modules/WindowsJumpLists.jsm, line 244: TypeError: this._builder is undefined 512 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 513 | [Child 35960, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 514 | [Child 35960, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 515 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 516 | [GPU 33204, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 517 | 518 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 519 | 520 | rc/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 521 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 522 | [GPU 35072, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 523 | 524 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 525 | 526 | el_win.cc, line 346 527 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 528 | [Child 31548, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 529 | [Child 31548, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 530 | [Child 35228, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 531 | [Child 35228, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 532 | Unable to read VR Path Registry from C:\Users\Administrator\AUnable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 533 | [Child 33936, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 534 | [Child 40792, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 535 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 536 | [GPU 31804, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 537 | 538 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 539 | 540 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 541 | Thread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 542 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 543 | [GPU 31500, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 544 | 545 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 546 | 547 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 548 | istry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 549 | [Child 41356, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 550 | [Child 41356, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 551 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 552 | [Child 38744, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 553 | [Child 38744, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 554 | *** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping 555 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 556 | [GPU 26928, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 557 | 558 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 559 | 560 | n for id: telemetry_modules_ping 561 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 562 | [GPU 43052, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 563 | 564 | ###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv 565 | 566 | or: cannot send/recv 567 | 568 | Unable to read VR Path Registry from C:\Users\Administrator\AppData\Local\openvr\openvrpaths.vrpath 569 | -------------------------------------------------------------------------------- /logco/2018032418.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liwanlei/python-selenium/b141331777dcfc33021dbb2565f9649d83bf78c0/logco/2018032418.log -------------------------------------------------------------------------------- /report/2018-03-24_18_43.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |Start Time: 2018-03-24 18:43:52
154 |Duration: 0:02:23.875229
155 |Status: Error 13
156 | 157 |测试结果
158 |163 | Summary 164 | Failed 165 | All 166 |
167 |Test Group/Test case 171 | | Count 172 | | Pass 173 | | Fail 174 | | Error 175 | | View 176 | |
---|---|---|---|---|---|
login_test.Testlogin | 182 |3 | 183 |0 | 184 |0 | 185 |3 | 186 |Detail | 187 |
test_login1_1 |
191 |
192 |
193 |
194 |
195 | error
196 |
197 |
198 |
221 |
222 |
223 |
199 |
200 | [x]
201 |
202 | 203 | 204 | ft1.1: Traceback (most recent call last): 205 | File "C:\Users\Administrator\Desktop\python-selenium\case\login_test.py", line 14, in setUp 206 | self.login_fun=Login_tes(self.derve) 207 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 18, in __init__ 208 | self.driber.get(self.lo_url) 209 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 210 | self.execute(Command.GET, {'url': url}) 211 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 212 | self.error_handler.check_response(response) 213 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 214 | raise exception_class(message, screen, stacktrace) 215 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 216 | 217 | 218 | 219 |220 | |
224 | ||||
test_login1_2 |
228 |
229 |
230 |
231 |
232 | error
233 |
234 |
235 |
258 |
259 |
260 |
236 |
237 | [x]
238 |
239 | 240 | 241 | ft1.2: Traceback (most recent call last): 242 | File "C:\Users\Administrator\Desktop\python-selenium\case\login_test.py", line 14, in setUp 243 | self.login_fun=Login_tes(self.derve) 244 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 18, in __init__ 245 | self.driber.get(self.lo_url) 246 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 247 | self.execute(Command.GET, {'url': url}) 248 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 249 | self.error_handler.check_response(response) 250 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 251 | raise exception_class(message, screen, stacktrace) 252 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 253 | 254 | 255 | 256 |257 | |
261 | ||||
test_login1_3 |
265 |
266 |
267 |
268 |
269 | error
270 |
271 |
272 |
295 |
296 |
297 |
273 |
274 | [x]
275 |
276 | 277 | 278 | ft1.3: Traceback (most recent call last): 279 | File "C:\Users\Administrator\Desktop\python-selenium\case\login_test.py", line 14, in setUp 280 | self.login_fun=Login_tes(self.derve) 281 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 18, in __init__ 282 | self.driber.get(self.lo_url) 283 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 284 | self.execute(Command.GET, {'url': url}) 285 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 286 | self.error_handler.check_response(response) 287 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 288 | raise exception_class(message, screen, stacktrace) 289 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 290 | 291 | 292 | 293 |294 | |
298 | ||||
xiugai_test.Test_xiugai | 302 |3 | 303 |0 | 304 |0 | 305 |3 | 306 |Detail | 307 |
test_xiugai_1_1 |
311 |
312 |
313 |
314 |
315 | error
316 |
317 |
318 |
332 |
333 |
334 |
319 |
320 | [x]
321 |
322 | 323 | 324 | ft2.1: Traceback (most recent call last): 325 | File "C:\Users\Administrator\Desktop\python-selenium\case\xiugai_test.py", line 15, in setUp 326 | self.derve=webdriver.Fi() 327 | AttributeError: module 'selenium.webdriver' has no attribute 'Fi' 328 | 329 | 330 |331 | |
335 | ||||
test_xiugai_1_2 |
339 |
340 |
341 |
342 |
343 | error
344 |
345 |
346 |
360 |
361 |
362 |
347 |
348 | [x]
349 |
350 | 351 | 352 | ft2.2: Traceback (most recent call last): 353 | File "C:\Users\Administrator\Desktop\python-selenium\case\xiugai_test.py", line 15, in setUp 354 | self.derve=webdriver.Fi() 355 | AttributeError: module 'selenium.webdriver' has no attribute 'Fi' 356 | 357 | 358 |359 | |
363 | ||||
test_xiugai_1_3 |
367 |
368 |
369 |
370 |
371 | error
372 |
373 |
374 |
388 |
389 |
390 |
375 |
376 | [x]
377 |
378 | 379 | 380 | ft2.3: Traceback (most recent call last): 381 | File "C:\Users\Administrator\Desktop\python-selenium\case\xiugai_test.py", line 15, in setUp 382 | self.derve=webdriver.Fi() 383 | AttributeError: module 'selenium.webdriver' has no attribute 'Fi' 384 | 385 | 386 |387 | |
391 | ||||
zhaohui_test.Testzhaohui | 395 |3 | 396 |0 | 397 |0 | 398 |3 | 399 |Detail | 400 |
test_zhaohui_1_1 |
404 |
405 |
406 |
407 |
408 | error
409 |
410 |
411 |
434 |
435 |
436 |
412 |
413 | [x]
414 |
415 | 416 | 417 | ft3.1: Traceback (most recent call last): 418 | File "C:\Users\Administrator\Desktop\python-selenium\case\zhaohui_test.py", line 16, in setUp 419 | self.zhaohui_fun=Zaohui_tes(self.derve) 420 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 91, in __init__ 421 | self.driver.get(self.zhao_url) 422 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 423 | self.execute(Command.GET, {'url': url}) 424 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 425 | self.error_handler.check_response(response) 426 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 427 | raise exception_class(message, screen, stacktrace) 428 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/reset_pwd&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 429 | 430 | 431 | 432 |433 | |
437 | ||||
test_zhaohui_1_2 |
441 |
442 |
443 |
444 |
445 | error
446 |
447 |
448 |
471 |
472 |
473 |
449 |
450 | [x]
451 |
452 | 453 | 454 | ft3.2: Traceback (most recent call last): 455 | File "C:\Users\Administrator\Desktop\python-selenium\case\zhaohui_test.py", line 16, in setUp 456 | self.zhaohui_fun=Zaohui_tes(self.derve) 457 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 91, in __init__ 458 | self.driver.get(self.zhao_url) 459 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 460 | self.execute(Command.GET, {'url': url}) 461 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 462 | self.error_handler.check_response(response) 463 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 464 | raise exception_class(message, screen, stacktrace) 465 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/reset_pwd&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 466 | 467 | 468 | 469 |470 | |
474 | ||||
test_zhaohui_1_3 |
478 |
479 |
480 |
481 |
482 | error
483 |
484 |
485 |
508 |
509 |
510 |
486 |
487 | [x]
488 |
489 | 490 | 491 | ft3.3: Traceback (most recent call last): 492 | File "C:\Users\Administrator\Desktop\python-selenium\case\zhaohui_test.py", line 16, in setUp 493 | self.zhaohui_fun=Zaohui_tes(self.derve) 494 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 91, in __init__ 495 | self.driver.get(self.zhao_url) 496 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 497 | self.execute(Command.GET, {'url': url}) 498 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 499 | self.error_handler.check_response(response) 500 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 501 | raise exception_class(message, screen, stacktrace) 502 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/reset_pwd&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 503 | 504 | 505 | 506 |507 | |
511 | ||||
zhuce_test.Testzhuce | 515 |4 | 516 |0 | 517 |0 | 518 |4 | 519 |Detail | 520 |
test_zhuce_1_1 |
524 |
525 |
526 |
527 |
528 | error
529 |
530 |
531 |
554 |
555 |
556 |
532 |
533 | [x]
534 |
535 | 536 | 537 | ft4.1: Traceback (most recent call last): 538 | File "C:\Users\Administrator\Desktop\python-selenium\case\zhuce_test.py", line 16, in setUp 539 | self.zhuce_fun=Zhuce_tes(self.derve) 540 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 54, in __init__ 541 | self.deriver.get(self.zhu_url) 542 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 543 | self.execute(Command.GET, {'url': url}) 544 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 545 | self.error_handler.check_response(response) 546 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 547 | raise exception_class(message, screen, stacktrace) 548 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 549 | 550 | 551 | 552 |553 | |
557 | ||||
test_zhuce_1_2 |
561 |
562 |
563 |
564 |
565 | error
566 |
567 |
568 |
591 |
592 |
593 |
569 |
570 | [x]
571 |
572 | 573 | 574 | ft4.2: Traceback (most recent call last): 575 | File "C:\Users\Administrator\Desktop\python-selenium\case\zhuce_test.py", line 16, in setUp 576 | self.zhuce_fun=Zhuce_tes(self.derve) 577 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 54, in __init__ 578 | self.deriver.get(self.zhu_url) 579 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 580 | self.execute(Command.GET, {'url': url}) 581 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 582 | self.error_handler.check_response(response) 583 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 584 | raise exception_class(message, screen, stacktrace) 585 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 586 | 587 | 588 | 589 |590 | |
594 | ||||
test_zhuce_1_3 |
598 |
599 |
600 |
601 |
602 | error
603 |
604 |
605 |
628 |
629 |
630 |
606 |
607 | [x]
608 |
609 | 610 | 611 | ft4.3: Traceback (most recent call last): 612 | File "C:\Users\Administrator\Desktop\python-selenium\case\zhuce_test.py", line 16, in setUp 613 | self.zhuce_fun=Zhuce_tes(self.derve) 614 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 54, in __init__ 615 | self.deriver.get(self.zhu_url) 616 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 617 | self.execute(Command.GET, {'url': url}) 618 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 619 | self.error_handler.check_response(response) 620 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 621 | raise exception_class(message, screen, stacktrace) 622 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 623 | 624 | 625 | 626 |627 | |
631 | ||||
test_zhuce_1_4 |
635 |
636 |
637 |
638 |
639 | error
640 |
641 |
642 |
665 |
666 |
667 |
643 |
644 | [x]
645 |
646 | 647 | 648 | ft4.4: Traceback (most recent call last): 649 | File "C:\Users\Administrator\Desktop\python-selenium\case\zhuce_test.py", line 16, in setUp 650 | self.zhuce_fun=Zhuce_tes(self.derve) 651 | File "C:\Users\Administrator\Desktop\python-selenium\bussinses\funnicgong.py", line 54, in __init__ 652 | self.deriver.get(self.zhu_url) 653 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 324, in get 654 | self.execute(Command.GET, {'url': url}) 655 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute 656 | self.error_handler.check_response(response) 657 | File "C:\Users\Administrator\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response 658 | raise exception_class(message, screen, stacktrace) 659 | selenium.common.exceptions.WebDriverException: Message: Reached error page: about:neterror?e=connectionFailure&u=http%3A//127.0.0.1%3A8000/&c=UTF-8&f=regular&d=Firefox%20%E6%97%A0%E6%B3%95%E5%BB%BA%E7%AB%8B%E5%88%B0%20127.0.0.1%3A8000%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%9A%84%E8%BF%9E%E6%8E%A5%E3%80%82 660 | 661 | 662 | 663 |664 | |
668 | ||||
Total | 674 |13 | 675 |0 | 676 |0 | 677 |13 | 678 |679 | |