Description
In Selenium individual options can be easily selected/deselect by clicking on them (even if SELECT itself isn't expanded). It even doesn't force you to do a Ctrl/CMD+Click on an option to append it to current selection. I haven't seen such luxury in other JavaScript enabled drivers (e.g. Sahi, Zombie), where the only method that allows to manipulate SELECT element is called setSelected
(or similar) and accepts an array of option values to be selected.
Without individual option deselection the only possible way is to call NodeElement::selectOption
method multiple times in following fashion:
$multi_select->selectOption('value1', true); // true - to reset selection to this option
$multi_select->selectOption('value2', false); // false - to append to current selection
$multi_select->selectOption('valueN', false); // false - to append to current selection
...
Having some sort of resetSelection
method of a driver, that would uncheck all options would be a great help in this case.
Implementing such method however isn't that easy as it sounds, because native setSelected
methods of underlying browser controllers:
- doesn't support selecting non-existing options just to unselect all of them
- doesn't support
setValue('')
call on a multi-select just to unselect all options
Without changing DriverInterface
and associated drivers I don't have any other choice for deselection an option, then:
- use
getValue
to get currently selected options - remove options, that needs to be deselected from resulting array
- call
selectOption
multiple times (see example in the beginning)
This approach has major drawback - multiple onchange
event calls, that doesn't really happen when user himself is changing multi-select selection.
Any ideas would be appreciated.