How To Import Maven Project In Eclipse For Selenium Test

We have created new project with name “MavenProject” from command prompt during previous post. Now we needs to Import maven project In eclipse and then we can create and run selenium test In It. We will go step by step to Import project In eclipse as bellow. Step 1 : Make “MavenProject” compatible to Import In … Read more

How to Create New Maven Project From Command Prompt For Selenium

Earlier, We already learnt how to download maven In Eclipse In THIS POST and how to create new maven project In eclipse In THIS POST. Now we are going to create new maven project from command prompt for selenium webdriver test. We already learnt how to download and configure maven In windows manually In my … Read more

How To Download And Install Apache Maven In Windows System

Earlier we learnt how to download and Install Maven In eclipse IDE In THIS POST. Another way of using maven with your selenium project Is download It and configure It In windows system Instead of eclipse. There Is nothing to Install but you just need to configure It In your windows system and then you … Read more

Closing All Tabs Using Robot Class In Selenium WebDriver

Earlier we learnt how to work with multiple window tabs In single browser window In selenium WebDriver In THIS POST. Now supposing there are multiple tabs open In browser window and you wants to close all of them In one shot then how you will do It? Simple way Is using driver.quit(); method of selenium WebDriver. Can … Read more