如何在WebdriverIO脚本中禁用/避免xdg-open弹出窗口

时间:2018-01-31 08:14:24

标签: javascript google-chrome mobile popup webdriver-io

我正在使用WebdriverIO通过更改代理在Linux平台上为移动视图编写自动化测试。在那里,我们有一个用例强制打开xdg-open popup,阻止了下面的测试。

由于我们在CI平台上运行测试,我不能模拟一些手册,但必须通过我们的测试来处理这种情况。

以下是我的chromeOptions:



browserName: 'chrome',
chromeOptions: {
                args: [
                    'disable-popup-blocking',
                    'incognito',
                    '--window-size=400,767', 
                    '--window-position=1050,210',
                    'user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53',
                ],
            },




Click here for the screenshot

1 个答案:

答案 0 :(得分:0)

这解决了问题:)

chromeOptions: {
            args: [
                '--window-size=400,767',
                '--window-position=1050,210',
                'use-mobile-user-agent',
                'user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3',
            ],
            prefs: {
                protocol_handler: {
                    excluded_schemes: {
                        sms: false,
                    },
                },
            },
        },