Assert that the <SELECT> widget identified by `selector` has the selected options with the given `values`.
(self, selector, values)
| 236 | self._assertOptionsValues("%s > option" % selector, values) |
| 237 | |
| 238 | def assertSelectedOptions(self, selector, values): |
| 239 | """ |
| 240 | Assert that the <SELECT> widget identified by `selector` has the |
| 241 | selected options with the given `values`. |
| 242 | """ |
| 243 | self._assertOptionsValues("%s > option:checked" % selector, values) |
| 244 | |
| 245 | def is_disabled(self, selector): |
| 246 | """ |
no test coverage detected