Answers for "how to select a dropdown in selenium c#"

0

using selenium with a dropdown menu

driver.findElement(By.id("dropdownlistone")).click(); // To click on drop down list
driver.findElement(By.linkText("india")).click(); // To select a data from the drop down list
Posted by: Guest on April-09-2020

Code answers related to "how to select a dropdown in selenium c#"

Python Answers by Framework

Browse Popular Code Answers by Language