Spectron
Easily test your Electron apps using
ChromeDriver and
WebdriverIO.
This minor version of this library tracks the minor version of the Electron
versions released. So if you are using Electron 0.37.x
you would want to use
a spectron
dependency of ~2.37
in your package.json
file.
Learn more from this presentation.
:rotating_light: Upgrading from 1.x
to 2.x
? Read the changelog.
Using
npm install --save-dev spectron
Spectron works with any testing framework but the following example uses
mocha:
var Application = require('spectron').Application
var assert = require('assert')
describe('application launch', function () {
this.timeout(10000)
beforeEach(function () {
this.app = new Application({
path: '/Applications/MyApp.app/Contents/MacOS/MyApp'
})
return this.app.start()
})
afterEach(function () {
if (this.app && this.app.isRunning()) {
return this.app.stop()
}
})
it('shows an initial window', function () {
return this.app.client.getWindowCount().then(function (count) {
assert.equal(count, 1)
})
})
})
Application API
Spectron exports an Application
class that when configured, can start and
stop your Electron application.
new Application(options)
Create a new application with the following options:
path
- String path to the application executable to launch. Requiredargs
- Array of arguments to pass to the executable.
See here
for details on the Chrome arguments.cwd
- String path to the working directory to use for the launched
application. Defaults to process.cwd()
.env
- Object of additional environment variables to set in the launched
application.host
- String host name of the launched chromedriver
process.
Defaults to 'localhost'
.port
- Number port of the launched chromedriver
process.
Defaults to 9515
.nodePath
- String path to a node
executable to launch ChromeDriver with.
Defaults to process.execPath
.connectionRetryCount
- Number of retry attempts to make when connecting
to ChromeDriver. Defaults to 10
attempts.connectionRetryTimeout
- Number in milliseconds to wait for connections
to ChromeDriver to be made. Defaults to 30000
milliseconds.quitTimeout
- Number in milliseconds to wait for application quitting.
Defaults to 1000
milliseconds.startTimeout
- Number in milliseconds to wait for ChromeDriver to start.
Defaults to 5000
milliseconds.waitTimeout
- Number in milliseconds to wait for calls like
waitUntilTextExists
and waitUntilWindowLoaded
to complete.
Defaults to 5000
milliseconds.
Properties
client
Spectron uses WebdriverIO and exposes the managed
client
property on the created Application
instances.
The full client
API provided by WebdriverIO can be found
here.
Several additional commands are provided specific to Electron.
All the commands return a Promise
.
So if you wanted to get the text of an element you would do:
app.client.getText('#error-alert').then(function (errorText) {
console.log('The #error-alert text content is ' + errorText)
})
electron
The electron
property is your gateway to accessing the full Electron API.
Each Electron module is exposed as a property on the electron
property
so you can think of it as an alias for require('electron')
from within your
app.
So if you wanted to access the clipboard
API in your tests you would do:
app.electron.clipboard.writeText('pasta')
.electron.clipboard.readText().then(function (clipboardText) {
console.log('The clipboard text is ' + clipboardText)
})
browserWindow
The browserWindow
property is an alias for require('electron').remote.getCurrentWindow()
.
It provides you access to the current BrowserWindow
and contains all the APIs.
So if you wanted to check if the current window is visible in your tests you
would do:
app.browserWindow.isVisible().then(function (visible) {
console.log('window is visible? ' + visible)
})
It is named browserWindow
instead of window
so that it doesn't collide
with the WebDriver command of that name.
webContents
The webContents
property is an alias for require('electron').remote.getCurrentWebContents()
.
It provides you access to the WebContents
for the current window and contains all the APIs.
So if you wanted to check if the current window is loading in your tests you
would do:
app.webContents.isLoading().then(function (visible) {
console.log('window is loading? ' + visible)
})
mainProcess
The mainProcess
property is an alias for require('electron').remote.process
.
It provides you access to the main process's process
global.
So if you wanted to get the argv
for the main process in your tests you would
do:
app.mainProcess.argv().then(function (argv) {
console.log('main process args: ' + argv)
})
Properties on the process
are exposed as functions that return promises so
make sure to call mainProcess.env().then(...)
instead of
mainProcess.env.then(...)
.
rendererProcess
The rendererProcess
property is an alias for global.process
.
It provides you access to the renderer process's process
global.
So if you wanted to get the environment variables for the renderer process in
your tests you would do:
app.rendererProcess.env().then(function (env) {
console.log('main process args: ' + env)
})
Methods
start()
Starts the application. Returns a Promise
that will be resolved when the
application is ready to use. You should always wait for start to complete
before running any commands.
stop()
Stops the application. Returns a Promise
that will be resolved once the
application has stopped.
restart()
Stops the application and then starts it. Returns a Promise
that will be
resolved once the application has started again.
client.getMainProcessLogs()
Gets the console
log output from the main process. The logs are cleared
after they are returned.
Returns a Promise
that resolves to an array of string log messages
app.client.getMainProcessLogs().then(function (logs) {
logs.forEach(function (log) {
console.log(log)
})
})
client.getRenderProcessLogs()
Gets the console
log output from the render process. The logs are cleared
after they are returned.
Returns a Promise
that resolves to an array of log objects.
app.client.getRenderProcessLogs().then(function (logs) {
logs.forEach(function (log) {
console.log(log.message)
console.log(log.source)
console.log(log.level)
})
})
client.getSelectedText()
Get the selected text in the current window.
app.client.getSelectedText().then(function (selectedText) {
console.log(selectedText)
})
client.getWindowCount()
Gets the number of open windows.
app.client.getWindowCount().then(function (count) {
console.log(count)
})
client.waitUntilTextExists(selector, text, [timeout])
Waits until the element matching the given selector contains the given
text. Takes an optional timeout in milliseconds that defaults to 5000
.
app.client.waitUntilTextExists('#message', 'Success', 10000)
client.waitUntilWindowLoaded([timeout])
Wait until the window is no longer loading. Takes an optional timeout
in milliseconds that defaults to 5000
.
app.client.waitUntilWindowLoaded(10000)
client.windowByIndex(index)
Focus a window using its index from the windowHandles()
array.
app.client.windowByIndex(1)
Continuous Integration
On Travis CI
You will want to add the following to your .travis.yml
file when building on
Linux:
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3
Check out Spectron's .travis.yml
file for a production example.
On AppVeyor
You will want to add the following to your appveyor.yml
file:
os: unstable
Check out Spectron's appveyor.yml
file for a production example.
Test Library Examples
With Chai As Promised
WebdriverIO is promise-based and so it pairs really well with the
Chai as Promised library that
builds on top of Chai.
Using these together allows you to chain assertions together and have fewer
callback blocks. See below for a simple example:
npm install --save-dev chai
npm install --save-dev chai-as-promised
var Application = require('spectron').Application
var chai = require('chai')
var chaiAsPromised = require('chai-as-promised')
var path = require('path')
chai.should()
chai.use(chaiAsPromised)
describe('application launch', function () {
beforeEach(function () {
this.app = new Application({
path: '/Applications/MyApp.app/Contents/MacOS/MyApp'
})
return this.app.start()
})
beforeEach(function () {
chaiAsPromised.transferPromiseness = this.app.transferPromiseness
})
afterEach(function () {
if (this.app && this.app.isRunning()) {
return this.app.stop()
}
})
it('opens a window', function () {
return this.app.client.waitUntilWindowLoaded()
.getWindowCount().should.eventually.equal(1)
.browserWindow.isMinimized().should.eventually.be.false
.browserWindow.isDevToolsOpened().should.eventually.be.false
.browserWindow.isVisible().should.eventually.be.true
.browserWindow.isFocused().should.eventually.be.true
.browserWindow.getBounds().should.eventually.have.property('width').and.be.above(0)
.browserWindow.getBounds().should.eventually.have.property('height').and.be.above(0)
})
})
With AVA
Spectron works with AVA which allows you
to write your tests in ES2015 without extra support.
'use strict';
import test from 'ava';
import {Application} from 'spectron';
test.beforeEach(t => {
t.context.app = new Application({
path: '/Applications/MyApp.app/Contents/MacOS/MyApp'
});
return t.context.app.start();
});
test.afterEach(t => {
return t.context.app.stop();
});
test(t => {
return t.context.app.client.waitUntilWindowLoaded()
.getWindowCount().then(count => {
t.is(count, 1);
}).browserWindow.isMinimized().then(min => {
t.false(min);
}).browserWindow.isDevToolsOpened().then(opened => {
t.false(opened);
}).browserWindow.isVisible().then(visible => {
t.true(visible);
}).browserWindow.isFocused().then(focused => {
t.true(focused);
}).browserWindow.getBounds().then(bounds => {
t.ok(bounds.width > 0);
t.ok(bounds.height > 0);
});
});
AVA supports ECMAScript advanced features not only promise but also async/await.
test(async t => {
await t.context.app.client.waitUntilWindowLoaded();
t.is(1, await app.client.getWindowCount());
t.false(await app.browserWindow.isMinimized());
t.false(await app.browserWindow.isDevToolsOpened());
t.true(await app.browserWindow.isVisible());
t.true(await app.browserWindow.isFocused());
t.ok((await app.browserWindow.getBounds()).width > 0);
t.ok((await app.browserWindow.getBounds()).height > 0);
});