While doing a search for an issue I was having, I came across WebDriver spec for pageLoadingStrategy -
https://dvcs.w3.org/hg/webdriver/raw-file/tip/webdriver-spec.html#page-load-strategies-1This appears in the changelog for FirefoxDriver 2.40.0 as being implemented.
As part of DesiredCapabilties, I add setCapability(CapabilityType.PAGE_LOADING_STRATEGY, 'none'). I can't tell if anything has changed as a result of the new capability. If I force an error, I get the following as part of the stacktrace:
Driver info: org.openqa.selenium.firefox.FirefoxDriver
Capabilities [{platform=WINDOWS, databaseEnabled=true, cssSelectorsEnabled=true, javascriptEnabled=true, acceptSslCerts=true, handlesAlerts=true, browserName=firefox, webStorageEnabled=true, nativeEvents=true, rotatable=false, locationContextEnabled=true, applicationCacheEnabled=true, takesScreenshot=true, version=32.0}]
Am I doing something wrong? Is this capability not truly implemented?
Thanks
--Chung