MCPcopy Create free account
hub / github.com/PageBot/PageBot / select

Method select

Lib/pagebot/contexts/htmlcontext/htmlbuilder.py:1833–1843  ·  view source on GitHub ↗

The select element creates a drop-down list. self.select() ... self._select()

(self, **args)

Source from the content-addressed store, hash-verified

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')

Callers 4

composeMethod · 0.80
makeNavigationMethod · 0.80
_get_nextMethod · 0.80
getGalleyMethod · 0.80

Calls 1

write_tagMethod · 0.80

Tested by

no test coverage detected