How do I create a Selenium project in GitHub?
I am a beginner in Selenium and have no idea on how to create a selenium project in GitHub. I am a coder and I am learning how to do selenium for my job. So I created an account on GitHub. And I created a project in it but I don't know how to make the tests run and run them.
You can use the Travis CI to create a selenium test project in GitHub. You can read the details from the official doc here In summary, you will have a folder named as "Tests" and then you need to create a file called "Travis.yml" inside the folder. The content of the file is
Language: nodejs. Nodejs: - '6'. Beforeinstall: - npm install selenium-webdriver --save-dev. Script: - npm run build. - npm run test. After this, you can run the test by clicking the following button. And then the tests will be run automatically on the travis CI.
How to create simple Selenium project?
I want to start learning Selenium. I need to create a small simple application where I need to get some data from the website and return to a table for me to display. This is the simplest example: .
.Hello World!
.| User name: | .. | Password: | .. | . | . |