JavaScript or Qt way to update a select box value?
Posted
by Pirate for Profit
on Stack Overflow
See other posts from Stack Overflow
or by Pirate for Profit
Published on 2010-04-30T07:46:15Z
Indexed on
2010/04/30
7:57 UTC
Read the original article
Hit count: 279
So I have the following HTML and am trying to change which item is selected.
<select name="coolselectbox">
<option value="default" selected="selected">---</option>
<option value="something">Something</option>
<option value="something-else">Something Else</option>
</select>
Here's what I've tried:
QWebElement defaultOpt =
this->page()->mainFrame()->findFirstElement("option[value=default]");
QWebelement somethingOpt =
this->page()->mainFrame()->findFirstElement("option[value=something]");
defaultOpt.removeAttribute("selected");
somethingOpt.setAttribute("selected", "selected");
And then also:
QWebElement selectBox =
this->page()->mainFrame()->findFirstElement("select[name=coolselectbox]");
selectBox.setAttribute("value", "something-else");
However neither of these seems to get the job done.
Does anyone know a Qt solution, or is there perhaps some JavaScript snippet I can run to do this?
© Stack Overflow or respective owner