Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ os: linux
language: node_js

node_js:
- 'stable'
- 14

sudo: required

Expand All @@ -17,11 +17,11 @@ services:
- docker

before_install:
- docker pull selenium/standalone-chrome
- docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome
- docker pull selenium/standalone-chrome:3.141.59-20200826
- docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.141.59-20200826

install:
- npm install
- npm install --save-dev

script:
- export APPLITOOLS_BATCH_ID=`echo ${TRAVIS_PULL_REQUEST_SHA:=$TRAVIS_COMMIT}`
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@
### Install Env
```sh
# Docker Image
$ docker pull selenium/standalone-chrome
$ docker pull selenium/standalone-chrome:3.141.59-20200826
# Install npm package
$ npm install --save

# Run Docker Image in another terminal
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.141.59-20200826
```
* Note: wdio version : 6.4.0
#### Note:
- wdio version : 7.3.0
- Selenium Version: 3.141.59-20200826

### Run first visual test

```sh
# Export Applitools key
$ export APPLITOOLS_API_KEY=
Expand Down
Loading