How to Verify if Options in Dropdown are Sorted as Expected In Selenium WebDriver – Java
Hello Guys,
As I say always, your automation script is ineffective if you do not include logic to validate to make sure the desired action has been performed by Selenium script. For Example – You have a dropdown in your application. Manually you verify if dropdown contains desired options or it s sorted. Generally while automating same feature, we just select a value in dropdown and leave validating options in dropdown or if it is sorted. We will learn how can we achieve in Selenium-Java.
Infact, verifying dropdown contains sorted element require java code. Selenium can give only options in dropdown. What you need to validate on extracted options requires Java knowledge. As I say always, you can write better script if you are good in Java.
HTML for dropdown:
[html]
Select your language below:
Select English Hindi Kannada Malaylam Tamil Telgu
[/html]