使用BrowserMobProxy配置WebDriverIO

时间:2016-03-24 14:46:46

标签: javascript node.js selenium webdriver browsermob

有没有人有关于如何使用BrowserMobProxy配置WebDriverIO的正确示例?这样我就可以捕获网络流量。我之前使用的是WebDriverJS,它基本上是WebDriverIO的弃用版本。

3 个答案:

答案 0 :(得分:2)

您可以使用以下代码执行此操作。确保您的browsermob proxyselenium server正在投放。然后将代码粘贴到test.js文件中的代码下方,并将其放入webdriverio安装文件夹中。从cmd转到该文件夹​​并运行node test.js。应该在stuff.har所在位置生成test.js

var Proxy = require('browsermob-proxy').Proxy
    , webdriverio = require("./node_modules/webdriverio/")
    , fs = require('fs')
    , proxy = new Proxy()
;

proxy.cbHAR('search.yahoo.com', doSeleniumStuff, function(err, data) {

        if (err) {

            console.error('ERR: ' + err);
        } else {

            fs.writeFileSync('stuff.har', data, 'utf8');


        }
});

function doSeleniumStuff(proxy, cb) {

    var browser = webdriverio.remote({
        host: 'localhost'
        , port: 4444
        , desiredCapabilities: { browserName: 'firefox', seleniumProtocol: 'WebDriver', proxy: { httpProxy: proxy } }
    });

    browser
        .init()
        .url("http://search.yahoo.com")
        .setValue("#yschsp", "javascript")
        .submitForm("#sf")
        .end().then(cb);        

}

答案 1 :(得分:1)

如果您只想捕获网络流量,那么还有另一种方法。

Webdriverio允许您使用Chrome Dev Tools Protocol

请阅读webdriverio blog

这是有关如何与Webdriverio一起使用chrome开发工具的示例之一,如果需要更多帮助,请告诉我。

const { remote } = require('webdriverio')

    let browser;

    (async () => {
        browser = await remote({
            automationProtocol: 'devtools',
            capabilities: {
                browserName: 'chrome'
            }
        })

        await browser.url('https://webdriver.io')

        await browser.call(async () => {
            const puppeteerBrowser = browser.getPuppeteer()
            const page = (await puppeteerBrowser.pages())[0]
            await page.setRequestInterception(true)
            page.on('request', interceptedRequest => {
                if (interceptedRequest.url().endsWith('webdriverio.png')) {
                    return interceptedRequest.continue({
                        url: 'https://user-images.githubusercontent.com/10379601/29446482-04f7036a-841f-11e7-9872-91d1fc2ea683.png'
                    })
                }

                interceptedRequest.continue()
            })
        })

        // continue with WebDriver commands
        await browser.refresh()
        await browser.pause(2000)

        await browser.deleteSession()
    })().catch(async (e) => {
        console.error(e)
        await browser.deleteSession()
    })

答案 2 :(得分:0)

由于我没有运气使用browsermob proxy解决此问题(AFAIK暂时没有更新)

我创建了一个小的npm模块,以将硒测试捕获为HAR文件-https://www.npmjs.com/package/har-recorder

我接受了@ Raulster24的建议,并使用Chrome开发工具协议-https://github.com/loadmill/har-recorder/blob/master/index.js

实施了该建议