You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
I'd like to add some extensions to my chrome instance, using the WebDriver JavaScript API I would do this:
var options = new chrome.Options().
addExtensions("pathToExtension");
var driver = new webdriver.Builder().
withCapabilities(webdriver.Capabilities.chrome()).
setChromeOptions(options).
build();
How would I do the same thing in protractor?
It looks like you are parsing the capabilities section of the JSON to work out how to build the driver object, but I don't see anything in the structure that would accept a series of options.
As a side note is there a google group/mailing list for protractor, it would be good to put queries like this there rather than cluttering up the issues list.