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

Method _find_list_control

thirdparty/clientform/clientform.py:3240–3249  ·  view source on GitHub ↗
(self,
                           name=None, type=None, kind=None, id=None, 
                           label=None, nr=None)

Source from the content-addressed store, hash-verified

3238# Private methods.
3239
3240 def _find_list_control(self,
3241 name=None, type=None, kind=None, id=None,
3242 label=None, nr=None):
3243 if ((name is None) and (type is None) and (kind is None) and
3244 (id is None) and (label is None) and (nr is None)):
3245 raise ValueError(
3246 "at least one argument must be supplied to specify control")
3247
3248 return self._find_control(name, type, kind, id, label,
3249 is_listcontrol, nr)
3250
3251 def _find_control(self, name, type, kind, id, label, predicate, nr):
3252 if ((name is not None) and (name is not Missing) and

Callers 5

possible_itemsMethod · 0.95
setMethod · 0.95
toggleMethod · 0.95
set_singleMethod · 0.95
toggle_singleMethod · 0.95

Calls 1

_find_controlMethod · 0.95

Tested by

no test coverage detected