Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Selenium Assistent with WebdriverIO #225

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules
npm-debug.log
.DS_Store
dist
test/logs
26 changes: 13 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
os: osx
addons:
chrome: stable
firefox: '57.0'
language: node_js

node_js:
- '8'
- '10'
- '10'
- '12'

cache:
directories:
- "$HOME/.npm"
- "~/.selenium-assistant"
- "$HOME/.npm"

before_install:
# package-lock.json was introduced in npm@5
- '[[ $(node -v) =~ ^v9.*$ ]] || npm install -g npm@latest' # skipped when using node 9
- npm install -g greenkeeper-lockfile
# package-lock.json was introduced in npm@5
- '[[ $(node -v) =~ ^v9.*$ ]] || npm install -g npm@latest' # skipped when using node 9
- npm install -g greenkeeper-lockfile

install: npm install
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload

script:
- npm test
- npm run sauce
- npm run sauce

env:
global:
secure: qSfQS84RPgmuYfRKC/3KSxQK24/TpqalIsOQwfKTN3Xh7ClxCTCtfpYv2rKk5OeBEhsjUNrujtXQ9XEy1LoPGLdZd+ylDCORVQXJwkVV1zBK/YILdVX82yzMOHTV+HPYRZASz5vEkqgwMKY8TlveUbmIgAkEbxvjBaQKn4K5qRz7rxEaN1pbTLAKj8DYlOQpWfHRj3lQDBa4D6FTsTVWWQF0QvIXOKgcrn1eurk9zue5Y/Y3ROAIxGYEhh37ToOzqThte3RnauG5xv01cWp5+MJuG4wYt5y4UQHHgSWwcbZ8w+38e08j12dAWRgo4JZgksbmCnHtoDwwo29MBYMGzCLyyGiJ0KRng1/sXoY0c7R+47jx4RlfbULY9jN+NiB6tpVAyXcFmn7mb87fDrnFc+KxcRatPRbkSGoZ0kwlwVZbVPiv0NXEgw2r9BxdDPATrwSxPYYqkdamt5bxujAuepifRx7/4Wzsakyy99CgKmUq3blp8nWoTnyKeRy6wvtYsiXA/nWTun1HLkiloG9Cbtba2ltKaFVL+0dWuWF5+Q//3k8b9OyZmsPqFnz2mh/dv8vRvvhXeFYC4ZQ68Wb4bnbG3JwJKPXvtLh2kLgdRTuR4x6MYGbO2kMvLzI21PsD3TaAkqune75BMYtDJZK6vR7TNCltjRZo3lXW68cIdsU=
Loading