Jason Cheatham
Jason Cheatham
`tunnelOptions.drivers` is the driver list. However, it won't be automatically populated if there are no browsers in the environments list, so you need to create a test config (or use...
See https://github.com/stylus/stylus/issues/2534, https://github.com/shelljs/shelljs/issues/991
Partially addressed in 64e305d6
Coincidentally, this came up for someone else yesterday with chromedriver. He's working on a pure webdriver tunnel (no Selenium), and `findByClassName` was failing there since chromedriver (mostly) follows strict W3C...
This is related to #1105
Let's see how well the simplified imports (#1120) work before adding globals.
The intern process itself is often left running. CTRL-C should gracefully shut down the Intern process and kill any children.
A test like the following will reproduce the issue with Intern 4.8, Chrome 79, Selenium 3.141.59, and chromedriver 79.0.3945.36. ```ts import { describe, it } from 'intern/lib/interfaces/bdd'; describe('clicking', () =>...
Possibly related to https://github.com/mozilla/geckodriver/issues/789 (and Firefox does exhibit the same behavior when using the `/moveto` endpoint).
Maybe no `platformType`; `platformName` and `platformVersion` are probably the way to go there (although the [W3C spec](https://www.w3.org/TR/webdriver/#capabilities) only mentions `platformName`, so...). Most of the logic for environment selection, like version...