Webdriverio: How can I force the incognito mode in chrome, or private mode in firefox?

Created on 13 Sep 2016  路  1Comment  路  Source: webdriverio/webdriverio

I am not sure where to give the options. Any help would be great.

Most helpful comment

Found it:

var options = {
    desiredCapabilities: {
        browserName: "chrome",
        chromeOptions: {
            args: ["incognito"]
        }
    }
};

>All comments

Found it:

var options = {
    desiredCapabilities: {
        browserName: "chrome",
        chromeOptions: {
            args: ["incognito"]
        }
    }
};
Was this page helpful?
0 / 5 - 0 ratings