Enabling/Disabling Text Box In Selenium IDE Using Javascript

Before discussing on enabling/disabling any element in selenium IDE, Let me tell you one thing – Selenium IDE is less powerful compared to Selenium RC and WebDriver, we can not perform all the tasks in selenium IDE. But still we can automate simple flows very easily in selenium IDE compared to webdriver because selenium IDE is … Read more

Selenium IDE “assertSelectedId” and “assertSelectedIds” Commands With Example

Most of all software web applications contains list box or drop downs on web page and “assertSelectedId” and “assertSelectedIds” commands are very useful to verify and assert the ids of selected label/s from list box. Both these are very good alternatives of “assertSelectedIndex“, “assertSelectedIndexes“, “assertSelectedLabel” commands. You can view few related verification commands like “verifySelectedId“, … Read more

Selenium IDE “verifyElementNotPresent” and “waitForElementNotPresent” Commands With Examples

In any software application regression test case, you need to verify and wait for different conditions as per test scenario requirement. Selenium IDE has many different buit in VERIFICATION and WAITFOR commands to handle that particular situation. Today we will look at “verifyElementNotPresent” and “waitForElementNotPresent” commands with examples. First of all let me describe you both … Read more

Selenium IDE Tutorial : “verifySelectedId” and “verifyNotSelectedId” commands with example

Earlier we had seen how to verify selected value of drop down or list box using LABEL, VALUE and INDEX. In selenium IDE, there is one more command is “verifySelectedId” to verify id of selected value in drop down or list box. If your drop down value contains id attribute then you can use it to select … Read more