TA的每日心情 | 无聊 2018-5-10 09:16 |
---|
签到天数: 172 天 连续签到: 2 天 [LV.7]测试师长
|
try应该如果正确应该是执行的,不正确就不执行,然后去except:下执行对吧?
ActionChains(driver).move_to_element(center).perform()
#book =xlwt.Workbook(encoding='utf-8')
#sheet = book.add_sheet('test_sheet',cell_overwrite_ok=True)
#i=0
try:#检测登录是否成功
driver.find_element_by_xpath('//a[@class="loginOut"]').click()
print('账号:%s密码:%s登录成功'%(username,password))
#sheet.write(0,i+1,'登录成功')
except:
print('账号:%s密码:%s登录失败'%(username,password))
#sheet.write(0,i+1,'登录失败')
time.sleep(2)
try:#检测退出账号是否成功
driver.find_element_by_link_text('登录').click()
print('退出账号成功')
except:
print('退出账号失败')
#book.save("E:\\test1.xls") |
|