0.17.0
Noteworthy:
-
Updated to Selenium 3.8.0 (jdk8)
-
Updated
htmlunit-driver
to 2.27 -
Added Chrome headless mode:
$.driver().useChrome().withHeadlessMode();
Other changes
- Created
SeleniumQuery.seleniumQueryBrowser()
to get theSeleniumQueryBrowser
instance used by the globalSeleniumQuery.$
field. - Update some dependencies, such as
commons-lang3
from 3.5 to 3.6, as well as addedcommons-text
1.1. - Removed htmlunit's
$.driver().useHtmlUnit().emulatingInternetExplorer8()
,$.driver().useHtmlUnit().emulatingInternetExplorer11()
and other browsers HtmlUnit does not emulate anymore. - Removed
$.browser.function()
s- The new place for the functions that were in
$.browser.FUNCTION
is either$.FUNCTION
or$.driver().FUNCTION
. - In other words, the function
$.browser.function()
will either be$.function()
or$.driver().function()
.
- The new place for the functions that were in
- Removed
BrowserFunctionsWithDeprecatedFunctions
(class that held that attribute while it was deprecated)