You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only solution for now seems to be @Ignoreing affected tests (timeoutSingleArgTest, utf8Test, and allowScriptTags) in SeleniumJSEnvFirefoxTest as they depend on hasOutput method, which attempts to reference non-existent log implementation.
The text was updated successfully, but these errors were encountered:
godenji
added a commit
to godenji/scala-js-env-selenium
that referenced
this issue
May 15, 2017
Notably upgrading to Selenium 3.4.0 along with corresponding Chrome and Firefox drivers.
Latest version of Chrome driver introduced some changes to their API which this PR addresses in `Chrome.scala`.
Latest version of Firefox driver (geckodriver) adheres more closely to W3C WebDriver spec, which requires us to @ignore a couple of tests that rely on non-existent logger implementation (see issue scala-js#64). Additionally geckodriver no longer allows negative values a la `...scriptTimeout(-1, TimeUnit.SECONDS)` (see issue scala-js#65); fallback to default 30 second timeout as workaround.
Misc. minor fixes of deprecation warnings with upgrade to scala 2.12.2
Geckodriver maintainer's response.
Only solution for now seems to be
@Ignore
ing affected tests (timeoutSingleArgTest
,utf8Test
, andallowScriptTags
) in SeleniumJSEnvFirefoxTest as they depend onhasOutput
method, which attempts to reference non-existent log implementation.The text was updated successfully, but these errors were encountered: