The select element creates a drop-down list. self.select() ... self._select()
(self, **args)
| 1831 | self._closeTag('label') |
| 1832 | |
| 1833 | def select(self, **args): |
| 1834 | """The select element creates a drop-down list. |
| 1835 | |
| 1836 | <www href="http://www.w3schools.com/tags/tag_select.asp" target="external"/> |
| 1837 | |
| 1838 | self.select() |
| 1839 | ... |
| 1840 | self._select() |
| 1841 | |
| 1842 | """ |
| 1843 | self.write_tag('select', True, args) |
| 1844 | |
| 1845 | def _select(self): |
| 1846 | self._closeTag('select') |
no test coverage detected