prefer sh to bash in the docs

This commit is contained in:
Charles Kerr 2017-11-24 11:13:57 +01:00
parent c18afc924b
commit 1b0c1842ca
16 changed files with 87 additions and 81 deletions

View file

@ -14,7 +14,7 @@ From [ChromeDriver - WebDriver for Chrome][chrome-driver]:
for Electron. It is built on top of [WebdriverIO](http://webdriver.io/) and
has helpers to access Electron APIs in your tests and bundles ChromeDriver.
```bash
```sh
$ npm install --save-dev spectron
```
@ -57,7 +57,7 @@ a Node package for testing with web driver, we will use it as an example.
First you need to download the `chromedriver` binary, and run it:
```bash
```sh
$ npm install electron-chromedriver
$ ./node_modules/.bin/chromedriver
Starting ChromeDriver (v2.10.291558) on port 9515
@ -68,7 +68,7 @@ Remember the port number `9515`, which will be used later
### 2. Install WebDriverJS
```bash
```sh
$ npm install selenium-webdriver
```
@ -114,7 +114,7 @@ driver.
First you need to download the `chromedriver` binary, and run it:
```bash
```sh
$ npm install electron-chromedriver
$ ./node_modules/.bin/chromedriver --url-base=wd/hub --port=9515
Starting ChromeDriver (v2.10.291558) on port 9515
@ -125,7 +125,7 @@ Remember the port number `9515`, which will be used later
### 2. Install WebdriverIO
```bash
```sh
$ npm install webdriverio
```