Assert that the <SELECT> widget identified by `selector` has the options with the given `values`.
(self, selector, values)
| 229 | ) |
| 230 | |
| 231 | def assertSelectOptions(self, selector, values): |
| 232 | """ |
| 233 | Assert that the <SELECT> widget identified by `selector` has the |
| 234 | options with the given `values`. |
| 235 | """ |
| 236 | self._assertOptionsValues("%s > option" % selector, values) |
| 237 | |
| 238 | def assertSelectedOptions(self, selector, values): |
| 239 | """ |
no test coverage detected