Selenium打开外部应用程序的弹窗处理

问题

selenium自动化操作页面跳转到外部应用程序进行下载等操作,各种窗口处理方式无法解决

原因

该窗口属于浏览器窗口,与访问页面无关(已经脱离页面操作层面)

解决

selenium启动浏览器时,对浏览器进行相关窗口设置

解决方式

1、打开应用程序前,打开浏览器开发者模式-network-all

2、触发打开外部应用程序出现窗口,查看红色的报错的请求

3、复制窗口的域名(如图https://apps.apple.com),复制红色报错请求的url协议名称(如图macappstores)

使用如下代码

python 复制代码
chrome_options = webdriver.ChromeOptions()
prefs = {
    "protocol_handler": {
        # 该方法会允许启动,执行中会把本地外部应用唤起。不影响自动化执行,可视化执行时一定程度影响视野
        "allowed_origin_protocol_pairs": {
            # 域名即窗口显示的域名
            # macappstores属于协议名称,从network抓包即可看到。ture表示允许启动,false表示禁止启动(会出现弹窗确认)
            "https://apps.apple.com": {"macappstores": True, "itms-appss": True},
            "https://itunes.apple.com": {"itms-appss": True}
        },
        # 以下方法测试不可用,查找原因需要更新selenium至最新版本(未实验)
        # 该方法理论可以直接不启动应用程序,并且不出现弹窗。最符合实际诉求
        # "excluded_schemes": {
            # ture表示禁止启动,false表示允许启动
            # "https://apps.apple.com": {"macappstores": True},
            # "https://itunes.apple.com": {"itms-appss": True}
        # }
    }
}
chrome_options.add_experimental_option("prefs", prefs)
webdriver.Chrome(driver_path, options=chrome_options)

参考:

https://www.5axxw.com/questions/content/yhke2q

https://blog.csdn.net/qq_26819733/article/details/126799304

相关推荐
weixin_4387321015 小时前
Selenium 中 expected_conditions 模块详解:提升 Web 自动化测试效率的得力助手
selenium·测试工具
niuniu_6662 天前
简单的自动化场景(以 Chrome 浏览器 为例)
运维·chrome·python·selenium·测试工具·自动化·安全性测试
suimeng62 天前
ChromeDriver的常用方法
java·selenium
niuniu_6663 天前
Selenium 性能测试指南
selenium·测试工具·单元测试·测试·安全性测试
莓事哒3 天前
selenium和pytessarct提取古诗文网的验证码(python爬虫)
爬虫·python·selenium·测试工具·pycharm
suimeng63 天前
基本元素定位(findElement方法)
java·selenium
mywpython3 天前
mac 最新的chrome版本配置selenium的方式
chrome·python·selenium·macos
freejackman3 天前
Selenium框架——Web自动化测试
python·selenium·测试
冷月半明3 天前
Python项目打包指南:PyInstaller与SeleniumWire的兼容性挑战及解决方案
python·selenium
m0_490240674 天前
软件自动化测试(1):python+selenium自动化测试环境搭建
开发语言·python·selenium