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 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

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