How to check a button with some link is enabled in Selenium IDE(firefox addon)?
The scenario is like that button is actually enabled. But sometime due to some issue it becomes disable...i have to test if it is enable or not
How to check a button with some link is enabled in Selenium IDE(firefox addon)?
The scenario is like that button is actually enabled. But sometime due to some issue it becomes disable...i have to test if it is enable or not
I believe if Web-element is Checked then it is Enable and if its Unchecked then Disabled.
To Check if the Button is Enable/Disable you can use
locator - an element locator pointing to a checkbox or radio button
variableName - the name of a variable in which the result is to be stored.
If you want your script to Stop if the element returns False.
If you want your script Not to Stop if the element returns False.
Also you can refer the List of all Selenium IDE Commands available Here. Hope that will help you.