Creating Object Repository Using Properties File In Selenium WebDriver
In selenium WebDriver software automation testing tool, There Is not any built In facility to create object repository. So maintenance of page objects(Page […]
In selenium WebDriver software automation testing tool, There Is not any built In facility to create object repository. So maintenance of page objects(Page […]
isMultiple() method is used to identify if you can select multiple options from a select element. deselectAll() method is used to deselect […]
Adding selection or removing selection from list box are very common actions for list box. Selenium WebDriver has 3 alternate options to select […]
Data parameterization in selenium or data driven test is must required thing of any software automation testing tool. If you can not perform data […]
We can know element’s enabled/disabled status very easily using isEnabled() method in selenium webdriver software test as described in THIS EXAMPLE POST. Now supposing […]
Selenium WebDriver software testing tool has built in “WebDriver.switchTo().window()” method available to switch from one window to another window so it is very […]
As we all knows, Each and every software web application contains many number of different links/URLs. Some of them are redirecting to […]
Assume you have prepared test case for your software web application test scenario (using selenium webdriver with eclipse and junit) and now […]
As you know, WebDriver is software web application regression testing tool and you will face many problems during your webdriver test case […]
Selenium WebDriver is totally freeware software testing tool and we can use it for software web application regression purpose. Hovering mouse on […]
Capturing screenshot of software web application page is very easy in selenium webdriver. As we knows, It is very basic required thing […]
Some times you need to verify the presence of element before taking some action on software web application page. As you know, […]
We have seen many examples of webdriver’s findElement() in my previous posts. You will find syntax of findElement() with example on THIS […]
In my earlier posts, we have learnt few BASIC ACTION COMMANDS of selenium WebDriver software testing tool with examples. You will have to […]
In my earlier tutorial of selenium webdriver software testing tool, we learn few basic action commands of selenium WebDriver like HOW TO […]
As we have seen in my previous posts, we can Get Page Title, Get Domain Name, Generate Alert using java script executor interface […]
If you need to generate alert during your software test case execution then you can use java script Executor in selenium webdriver software […]
You need current software web application’s page URL when you have to compare it with your expected URL. You can do it […]
JavascriptExecutor is very useful Interface in webdriver software testing tool. Interface JavascriptExecutor helps you to execute javascript in your software test case whenever required. If […]
Some times you need to wait for text, wait for element, wait for alert before performing actions in your regular software web application test cases […]
There are 2 types of waits available in Webdriver/Selenium 2 software testing tool. One of them is Implicit wait and another one is explicit […]
Selenium elementToBeClickable(By locator) method is used to wait for an element to be clickable. In my previous post, We have seen how […]
Selenium tutorial for beginner is basic requirement of any selenium learner to learn selenium perfectly if it’s free and complete. Selenium is very strong […]