Refer the article New Selenium IDE – Commands (Selenese), for the complete list of Selenium IDE commands and their practical demonstrations.
verify not selected value is one of the commands in Selenium IDE. This option works in opposite to the assert selected value command.
The purpose of verify not selected value command in Selenium IDE, is to check whether the given option is not in the selected state in dropdown field.
In this article, I am going to practically demonstrate verify not selected value command in Selenium IDE to check whether the given option is not in the selected state in the dropdown filed as shown below:
Note: We use the value attribute value of the given option as shown below to check whether it is not in the selected state in the dropdown field.
Let’s get started.
New Selenium IDE – Using ‘verify not selected value’ command for checking that an option is not selected in dropdown field
Follow the below steps for practicing verify not selected value command in Selenium IDE along with me:
1) Execute the open command in Selenium IDE as explained in the previous article: Selenium IDE – open command
2) Now click on the second row in the Selenium IDE’s Test Script Editor Box as shown below:
3) While the second row is selected in step 2, enter the Selenium IDE command ‘verify not selected value’ to the Command box field, enter the id locating strategy id=drop1 into the Target box field, and enter ‘mno’ text into the Value field as shown below:
Note: The locating strategy id=drop1 is for locating the dropdown field on the http://omayo.blogspot.com/ URL page (Shown at the beginning of the article).
‘mno’ text is the value attribute value of the non-selected state option ‘doc 4’ in the dropdown field.
4) Click on ‘Run current test’ option and observe that the execution got passed:
We have checked that the option having the given attribute value is not in the selected stated in the dropdown field.
Here concludes the practical demonstration of verify not selected value command in Selenium IDE.
In the next article, I will practically demonstrate another Selenium IDE command.
Next Steps:
- > Check complete Selenium Tutorial Contents here (Click here)
Please leave your questions/comments/feedback below.
Happy Learning ?
On a mission to contribute to the Software Testing Community in all possible ways.
Refer the article New Selenium IDE – Commands (Selenese), for the complete list of Selenium IDE commands and their practical demonstrations.