Webdriverio и Chromedriver не работают с goog:chromeOptions после обновления

Бегать java -jar -Dwebdriver.chrome.driver=.selenium/chromedriver .selenium/selenium-server-standalone-3.141.59.jar тогда этот код:

var webdriverio = require('webdriverio');

(async function () {
    var client = webdriverio.remote(getOptions());
    await client.init();
    await client.url('https://duckduckgo.com/');
})();

function getOptions() {
    var options = {
        desiredCapabilities: {
            browserName: 'chrome',
            loggingPrefs: {
                'browser': 'ALL',
                'driver': 'ALL',
                'performance': 'ALL'
            },
            'goog:chromeOptions': {
                perfLoggingPrefs: {
                    traceCategories: 'performance'
                }
            }
        }
    }
    return options;
}

выдает ошибку

(node:13395) UnhandledPromiseRejectionWarning: Error: Unable to create session from {
  "desiredCapabilities": {...

webdriverio: 4.14.4

0 ответов

Другие вопросы по тегам