<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()
我可以用什么操作员来检查警报?