Given the name of the file input, return the name of the clear checkbox input.
(self, name)
| 558 | use_fieldset = False |
| 559 | |
| 560 | def clear_checkbox_name(self, name): |
| 561 | """ |
| 562 | Given the name of the file input, return the name of the clear checkbox |
| 563 | input. |
| 564 | """ |
| 565 | return name + "-clear" |
| 566 | |
| 567 | def clear_checkbox_id(self, name): |
| 568 | """ |
no outgoing calls
no test coverage detected