Selenium IDE “waitForAlert” and “waitForAlertPresent” commands with example

As you know, there are many waitfor commands available in selenium IDE to handle wait conditions of software web applications. Each and every one has different purpose. “waitForAlert” and “waitForAlertPresent” commands are related to alerts. You can view more alert related commands list with example on selenium IDE commands page 1 and page 2. Now let me … Read more

How to use implicit wait in selenium webdriver and why

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 wait. Both (Implicit wait and explicit wait) are useful for waiting in WebDriver. Using waits, we are telling WebDriver to wait for a certain amount of time before going to next step. We … Read more

Selenium WebDriver wait for page title with example

This guide will show you how to use Selenium WebDriver to wait for page title during test execution. You’ll learn how to apply explicit waits with ExpectedConditions.titleIs() and titleContains() to ensure your tests proceed only when the expected title appears. WebDriver has many Canned Expected Conditions by which we can force webdriver to wait explicitly. … Read more

Selenium IDE Tutorials – “assertConfirmationNotPresent” and “assertConfirmationPresent” Example

My all tutorials on Selenium IDE are with practical examples and you can view all command examples on Example Page -1 and Example Page -2. Let me describe you 2 more selenium IDE commands which are related to confirmation message. We have already seen how to use “assertConfirmation” and “verifyConfirmation” commands. “assertConfirmationNotPresent” and “assertConfirmationPresent” are very related … Read more