如何使用功能子测试检查Selenium测试是否存在任何警报

时间:2017-11-27 08:03:49

标签: python-3.x testing selenium-webdriver

问:我需要什么? 答:如果用户点击<a href="#">删除表格中的行,我需要检查是否存在任何警报。我不能在Selenium测试中使用“Try-except”功能。我需要这样的东西:

with self.subTest('Testing alert in transaction {}'.format(value['link'])):
    driver.find_element_by_xpath('//table/tbody/tr[1]/td[last()]/a/i[@class="fa fa-remove"]').click()
    self.assertTrue(EC.alert_is_present(), 'Alert is present')
  

EC.alert_is_present()

我可以用什么操作员来检查警报?

0 个答案:

没有答案