Chromedriver checked
Appium can provide chromeOption like:
"chromeOptions": {
// options
}
or
"goog:chromeOptions: {
// options
}
https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/caps.md
Then, we can give disabling welcome screen on chrome with below.
--disable-fre
- https://github.com/bayandin/chromedriver/blob/5ba09b3f3f184aa3448d167d4809a73eac46a155/chrome_launcher.cc#L100
- https://chromium.googlesource.com/chromium/src/+/master/chrome/test/chromedriver/chrome_launcher.cc#100
"chromeOptions": {
"args": ["--disable-fre"]
}
BTW, we can see which capabilities are available as the chrome option in https://chromium.googlesource.com/chromium/src/+/master/chrome/test/chromedriver/capabilities.cc#541 . The args is there, but prefs is only in non Android. So, prefs is available PC chrome.