上面在项目中上传文件时遇到浏览器提示:
chrome浏览器不能使用self.driver.switch_to.alert.accept()方法关闭弹窗
加了如下显示等待也不行
WebDriverWait(self.driver, 10).until(expected_conditions.alert_is_present(), message=“没有找到弹窗”)
self.driver.switch_to.alert.accept()
网站加了安全信任也不行呢,
但是火狐浏览器竟然时可以使用 self.driver.switch_to.alert.accept()
alert = driver.switch_to.alert
# 获取警告框的文本信息
alert_text = alert.text
这样获取不到吗
火狐浏览器是可以的chrome和ege不行 ,异常是: NoAlertPresentException