Python+Selenium练习(二十八)-处理Alert弹窗
Posted 给自己一个向前进的理由
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python+Selenium练习(二十八)-处理Alert弹窗相关的知识,希望对你有一定的参考价值。
目标:如何通过Selenium方法处理网页Alert弹窗。
练习场景:和处理iframe类似,都是通过switch—_to方法。可以通过执行JS来增加一个弹窗。
具体代码:
# coding= utf-8 import time from selenium import webdriver driver = webdriver.Chrome() driver.maximize_window() driver.implicitly_wait(6) driver.get("https://www.baidu.com") time.sleep(1) driver.execute_script("window.alert(\'这是一个Alert弹窗\');") time.sleep(2) message = driver.switch_to_alert().text print(message) driver.switch_to_alert().accept() #点击弹窗里面的确定按钮 print(\'点击确定成功\') driver.execute_script("window.alert(\'这是一个Alert弹窗\');") driver.switch_to_alert().dismiss() #点击弹窗上面的X按钮 print(\'点击X成功\') driver.close()
注意;
driver.switch_to_alert().accept()
这是一个老方法,在有些编辑器(后面会介绍一款Python的IDE工具)会提示这个方法划横线,说明在最新Selenium在Pyhton支持包里,这个方法被丢弃,虽然还是可以用,现在新的方法是switch_to.alert(),用这个最新方法,我测试了下,无法模拟点击确定和点击关闭弹窗按钮,所以这个地方选择了旧的方法switch_to_alert()
参考原文链接:https://blog.csdn.net/u011541946/article/details/70140291
以上是关于Python+Selenium练习(二十八)-处理Alert弹窗的主要内容,如果未能解决你的问题,请参考以下文章
python学习(二十八)URL编码和解码&签名规则需求练习
Python+Selenium练习(二十二)-获取页面元素大小