--- tags: English --- # Running SideeX on GitLab ### Step 1 - Register [GitLab](https://gitlab.com/) and login ### 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 GitLab 1. Create a new repository in your GitLab 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 config file `.gitlab-ci.yml ` with the following content ```yml image: node:latest SideeX_Runner_Test: script: - node sideex-runner.js -c config.json ``` 3. After pushing your repository, GitLab CI will run your test case ![](https://i.imgur.com/PKcznK2.png)