[Android]W3C WebDriver in ChromeDriver

The most noticeable change is ChromeDriver now runs in W3C standard compliant mode by default. Other changes include:

ChromeDriver 75.0.3770.8 in http://chromedriver.chromium.org/downloads

We can call non-W3C protocol adding below option as capabilities, but finally it can handle W3C spec by default! The value should be boolean.

goog:options: {
    w3c: false,
}

// or below in Appium
chromeOptions: {
    w3c: false
}

Lower Android browser can not work newer chrome driver, so clients should have an ability to send non-W3C command though…

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.