--- tags: English --- # Running SideeX on Travis CI ### Step 1 - Login [Travis CI](https://travis-ci.com/) official website ### Step 2 - Start Selenium Standalone Server 1. Download Selenium [Standalone Server](https://www.seleniumhq.org/download/) (Tested version: 3.141.59) 2. Open the terminal and switch the path where you save the `selenium-server-standalone-{version}.jar` 3. Run java -jar `selenium-server-standalone-{version}.jar` ### Step 3 - Using SideeX Runner with Travis CI 1. Create a new repository in your GitHub 2. Put [SideeX Runner](https://sideex.io/download/) script, [Runner config](/@sideex/book/%2F%40sideex%2Frunner#Quick-Start) file and test cases in your repository 3. Create a `.travis.yml` file in your repository with the following content ```yml language: node_js node_js: - 10 script: node sideex-runner.js -c config.json ``` 4. After pushing your repository to GitHub, Travis CI will run your test case ![](https://i.imgur.com/h2JGAIu.png)