6

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

4

3 回答 3

3

您可以使用下面的代码来做到这一点。确保您的browsermob proxyandselenium 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);        

}
于 2016-04-22T03:12:56.533 回答
2

如果您只想捕获网络流量,那么还有另一种方法可以做到这一点。

Webdriverio 允许您使用Chrome 开发工具协议

请阅读webdriverio 博客

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

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()
    })
于 2019-10-20T07:33:19.190 回答
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

于 2019-12-10T10:12:00.937 回答