I don't seem to have org.openqa.selenium.MutableCapabilities available in my version of Selenium. I'm using version 2.53.0.
I'm trying to use Selenium standalone server in a Grails project and the application is crashing on this line:
ChromeOptions options = new ChromeOptions()
I have a feeling this may be the cause. Any help greatly appreciated.
MutableCapabilities
MutableCapabilitieswas introduced for the first time with the availability ofSelenium (Java Client) v3.6.0Here is the snapshot from the
Selenium (Java Client) v3.6.0Release Notes:With the availability of
Selenium (Java Client) v3.7.0we migrated from usingDesiredCapabilitiesto eitherMutableCapabilitiesor (preferably)ImmutableCapabilities.Here is the snapshot from the
Selenium (Java Client) v3.7.0Release Notes:org.openqa.selenium.MutableCapabilitiesHere is the JavaDoc link of
org.openqa.selenium.MutableCapabilities