You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an example repo that has Travis CI set up to run the selenium-side-runner command, which runs a Selenium IDE .side file, which was recorded by using a visual interface tool (a Chrome Extension called Selenium IDE). When I push a new commit, it creates a new build and shows test results on Travis CI here:
If you want to test out the selenium-side-runner command locally on your own computer, you can do this:
git clone https://github.com/hchiam/selenium-travis.git
cd selenium-travis
npm install # or: yarn
And then run this command:
npm run test# or: yarn test
Or just npm t. (Either way, it runs selenium-side-runnerunder the hood.)
Make sure to enable the specific GitHub repo in Travis CI
To skip running Travis CI upon commit, the commit message should contain [skip ci], or [ci skip], or [skip travis], etc. (ci, travis, travis ci, travis-ci, or travisci).
You might also be interested in an alternative
Travis CI using Spectron/mocha spec.js to simulate user input and button clicks in an Electron.js app: