Return the list of option elements.
(self)
| 927 | |
| 928 | @property |
| 929 | def options(self): |
| 930 | """ |
| 931 | Return the list of option elements. |
| 932 | """ |
| 933 | return [Element.wrap_dom_element(o) for o in self._element._dom_element.options] |
| 934 | |
| 935 | @property |
| 936 | def selected(self): |
nothing calls this directly
no test coverage detected