https://github.com/ddavison/getting-started-with-selenium
The project that will get you started with using Selenium!
https://github.com/ddavison/getting-started-with-selenium
Last synced: about 1 year ago
JSON representation
The project that will get you started with using Selenium!
- Host: GitHub
- URL: https://github.com/ddavison/getting-started-with-selenium
- Owner: ddavison
- License: apache-2.0
- Created: 2013-08-28T03:50:29.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2015-04-22T17:53:31.000Z (about 11 years ago)
- Last Synced: 2025-03-27T08:22:13.698Z (about 1 year ago)
- Language: Java
- Homepage: http://conductor.ddavison.io
- Size: 9.61 MB
- Stars: 32
- Watchers: 10
- Forks: 20
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](http://github.com/ddavison/getting-started-with-selenium)
[](http://github.com/ddavison/getting-started-with-selenium/fork)
# Getting Started
To get right up and started, you can [download the project (zip)](https://github.com/ddavison/getting-started-with-selenium/archive/master.zip) or you can checkout the project from github. If you don't know how, [this should help](http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository).
**Prerequisites**
- Maven (if using eclipse, install Maven Integration for Eclipse)
- jUnit 4
- Java
- WebDriver (Chrome, Firefox, IE, etc)
### Drivers
Currently, not all drivers are not packaged with this project, but they may be in the future!
- [Chromedriver](http://chromedriver.storage.googleapis.com/index.html) (now is packaged with the project)
- Firefox driver IS actually packaged with the Selenium jar.
- [IEDriver](https://code.google.com/p/selenium/downloads/list)
Launch your IDE, and under ```src/tests/java``` you'll find a file under the ```functional``` package. This is a very short a simple test.
If you do not have Chromedriver installed, just switch the browser to ```FIREFOX``` and right click the file and ```Run As -> jUnit Test```
This project is a sample project that uses the [Conductor Framework](http://conductor.ddavison.io). You can download this project to see quickly how you can layout your tests, and libraries.