How to apply wait in webdriver till element becomes invisible or hidden

As you know, WebDriver is software web application regression testing tool and you will face many problems during your webdriver test case creation and execution. You must knows alternate solution if one not works for your software automation test scenario. For example, you have used IMPLICIT WAIT in your software automation test case but if … Read more

Selenium WebDriver : Difference Between findElement and findElements with example

We have seen many examples of webdriver’s findElement() in my previous posts. You will find syntax of findElement() with example on THIS PAGE if you wants to use it in your software web application test case. Selenium WebDriver software testing tool has one more related method findElements. Now main question is what is the difference between findElement and findElements methods in … Read more

Selenium IDE Tutorial For “waitForEditable” And “waitForNotEditable” Commands With Example

Selenium IDE is free, easy and simple record and play regression testing tool and it is very easy to prepare regression testing test cases of any software web application if flow of execution is not much more complex and harder. More complex applications can not be automated in selenium IDE and we need to use … Read more

Selenium WebDriver By.cssSelector Element Locators With Example

WebDriver support many different element locating methods and locating element by it’s CSS Path is one of the most popular way in webdriver software automation testing tool. If you not want to use by id, name, tag name, class name or link text as your locator then you can locate that element on page of software … Read more