In earlier article we discussed about how to locate Link, Text Box, Button, Radio Button. In this article i want to discuss with you that how we can deal with the drop down boxes. We can call drop down also called select box because Web Driver's support class is Select, which provide useful method to interact with the drop down.
There are 3 method by which Selenium Web driver can interact with the drop down.
1) selectByIndex
In this method we will use the index to select the option.
so if you want to put the value 2 then following will be the script
2)selectByValue
In this method we will use the value to select the option.
Suppose you want to select the month "feb" then
3)selectBYVisibleText
In this method we will use the visible text to select the option.
Suppose you want to select the year"1986" then
There are 3 method by which Selenium Web driver can interact with the drop down.
1) selectByIndex
![]() |
In this method we will use the index to select the option.
so if you want to put the value 2 then following will be the script
2)selectByValue
In this method we will use the value to select the option.
Suppose you want to select the month "feb" then
3)selectBYVisibleText
In this method we will use the visible text to select the option.
Suppose you want to select the year"1986" then
Comments
Post a Comment