spectron icon indicating copy to clipboard operation
spectron copied to clipboard

DEPRECATED: 🔎 Test Electron apps using ChromeDriver

Results 104 spectron issues
Sort by recently updated
recently updated
newest added

Option to enable/disable w3c, setTimeout to match https://www.w3.org/TR/webdriver/#timeouts

Running 'getting started' script from http://electron.atom.io/spectron/ This is the result: ![screen shot 2016-06-05 at 18 17 01](https://cloud.githubusercontent.com/assets/4573903/15806956/3803357c-2b50-11e6-88f9-2738926ae231.png) First window is the application as I wanted it to be (but tests...

bug

Clone https://github.com/electron/electron-quick-start, then install the spectron and add test code by follow instructions from https://github.com/electron-userland/spectron#usage . The test code runs successfully, but the electron process stay in the background after...

Getting this error wherever wait conditions are applied. Issue started when I switched to Spectron version 14 and Electron version 12. On previous similar reported issues, it is suggested to...

I am getting ```bash Error: Failed to create session. session not created: This version of ChromeDriver only supports Chrome version 87 Current browser version is 94.0.4606.81 with binary path ````...

I'm attempting to build and run a docker container for end to end testing of my electron app. I'm receiving the following error: ``` Failed to create session. unknown error:...

spectron: "9.0.0", webdriverio: "5.16.7" when i type code `app.client.click()`, the vscode throws error `Property 'click' does not exist on type 'SpectronClient'.`, and `Namespace 'WebdriverIOAsync' has no exported member 'Client'.`

OS: Windows 10 Electron: 10.1.5 Spectron: 12.0.0 Electron 10 + Spectron 12 tests will pass (and successfully have access to the app via the webdriver.io functions) but will throw an...

Testing if my app is quitting correctly :smile: After `app.quit` `t.context.app.isRunning()` still reports `true`. https://github.com/electron/spectron/blob/aaf7b6964ed32f43c0955b0cb1af5eeb99938db0/lib/application.js#L86 `t.context.app.stop()` will fail with `Error: chrome not reachable`. Manually doing `t.context.app.running = false;` fixes it....