When running acceptance tests in Chrome, where part of the flow is logging in, Chrome prompts you to save the password (thus obscuring part of the window with this prompt). How can I configure WebDriverIO so that it tells Chrome not to show the prompt?
From several google searches, I have learned that the right setting for the ChromeDriver is called credentials_enable_service
, but it is always set using the Ruby, Java or Python api for Selenium, and I don't know how or where to set it in the static WebDriver config object.
It seems obvious that it should be under capabilities.chromeOptions
, but directly placing it there spits out an error from wdio about an unknown option.