Reputation: 361
I would like to change a value in dropdown list (h:selectOneMenu) with id "items".
The following causes error
client.setValue("items", "1");
java.lang.IllegalArgumentException: This method can not be used on components of type com.gargoylesoftware.htmlunit.html.HtmlSelect
I've tried:
client.getElement("items").setAttribute("value","1");
It causes no error and no effect as well.
Is there any possibility to solve it?
Thanx in advance
Upvotes: 0
Views: 310
Reputation: 361
http://community.jboss.org/wiki/UsingselectcomponentsListboxRadioMenuetc
Upvotes: 0