I'm using HtmlUnit in Java to navigate to a web page. From that webpage i need to log in and then go from there. I know how to type in the user name and password but then there is a dropdown box where i need to select one of the options. How do i select an option from a dropdown box in HtmlUnit? Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can navigate and manipulate the page
The JavaDoc shows that there are a lot of flexible API methods for doing things like this. |
||||
|
|
|
Following code: HtmlSelect select = page.getElementById(mySelectId); should be: HtmlSelect select = (HtmlSelect)page.getElementById(mySelectId); |
|||
|
|
|
Add the follwoing lines:
|
|||
|
|