关于selenium弹窗问题,这种形式的弹窗该怎么提取内容?
a = driver.switch_to.alert
a.accept()
这样写会报错Message: no alert open
回答:
driver.find_element_by_xpath("xpath值").text
回答:
这是dom元素,不是浏览器原生的弹窗,通过选择器获取
以上是 关于selenium弹窗问题,这种形式的弹窗该怎么提取内容? 的全部内容, 来源链接: utcz.com/a/159807.html
a = driver.switch_to.alert
a.accept()
这样写会报错Message: no alert open
driver.find_element_by_xpath("xpath值").text
这是dom元素,不是浏览器原生的弹窗,通过选择器获取
以上是 关于selenium弹窗问题,这种形式的弹窗该怎么提取内容? 的全部内容, 来源链接: utcz.com/a/159807.html