Sets the value of a select element; Will unselect previously selected option(s).
This method will do nothing for elements which are not select fields.
Internally calls browser.choose(this, value, false);
Sets the value of a select element; Will not unselect previously selected option(s) if append is true.
This method will do nothing for elements which are not select fields.
Internally calls browser.choose(this, values, append);
Selects multiple options of a select element; Will unselect previously selected option(s).
This method will do nothing for elements which are not select fields.
Internally calls browser.choose(this, values, false);
Selects multiple options of a select element; Will not unselect previously selected option(s) if append is true.
This method will do nothing for elements which are not select fields.
Internally calls browser.choose(this, values, append);