How to Install Eclipse and Create a Project – Selenium Training
How to Install Eclipse and Create a Project – Selenium Training
In the previous article we have seen JDK installation. After completion of JDK installation verification test automater can concentrate on Eclipse IDE download.
Navigation:
- Go to google.com site.
- Enter Eclipse IDE free download.
- Click eclipse.org downloads page.
- Click on download link w.r.t operation system.
- Wait until download completeness.
- Copy on downloaded file and paste in personal folder.
- Right click on downloaded file and select extract here.
- Wait until extract .
- Open eclipse folder.
- Right click eclipse logo.
- Create shortcut on desktop.
After completion of eclipse IDE download and shortcut creation on desktop , we need to specify work space folder while opening eclipse IDE first time.
- Double click eclipse IDE logo on desktop.
- Browser work space folder.
- Select don’t ask again check box.
- Click ok.
After completion of work space folder assignment , test automaters are eligible to start coding for test automation.
To create project we can follow below navigation.
- File menu in eclipse IDE.
- New.
- Java project.
- Enter a name to project.
- Click finish.
We can follow below navigation to create package.
- Right click on project.
- New.
- Package.
- Enter a name to package.
- Click finish.
We can follow below navigation to create a class with main ( ) method.
- Right click on package .
- New.
- Class.
- Enter a name starting upper case alphabet .
- Select main method option .
- Click finish.
In this article we have seen How to Install Eclipse and Create a Project – Selenium Training . In the next article will see how to download selenium and create a connection between selenium to the project created in eclipse.