MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / possible_items

Method possible_items

thirdparty/clientform/clientform.py:3011–3016  ·  view source on GitHub ↗

Return a list of all values that the specified control can take.

(self,  # deprecated
                       name=None, type=None, kind=None, id=None,
                       nr=None, by_label=False, label=None)

Source from the content-addressed store, hash-verified

3009# Form-filling methods applying only to ListControls.
3010
3011 def possible_items(self, # deprecated
3012 name=None, type=None, kind=None, id=None,
3013 nr=None, by_label=False, label=None):
3014 """Return a list of all values that the specified control can take."""
3015 c = self._find_list_control(name, type, kind, id, label, nr)
3016 return c.possible_items(by_label)
3017
3018 def set(self, selected, item_name, # deprecated
3019 name=None, type=None, kind=None, id=None, nr=None,

Callers

nothing calls this directly

Calls 1

_find_list_controlMethod · 0.95

Tested by

no test coverage detected