Selenium Python 笔记随记

1.判断页面上是否有弹窗存在(alert_is_present())
导入from selenium.webdriver.support import expected_conditions as EC
测试用例中断言页面上有弹窗存在self.assertTrue(EC.alert_is_present()(wd)) # wd为浏览器驱动
测试用例中断言页面上没有弹窗存在self.assertFalse(EC.alert_is_present()(wd)) # wd为浏览器驱动

上一篇:EC基本了解


下一篇:[Docker] Leverage a Docker Maven plugin