Same as is_checked()
(self, selector, by="css selector", timeout=None)
| 2566 | ) |
| 2567 | |
| 2568 | def is_selected(self, selector, by="css selector", timeout=None): |
| 2569 | """Same as is_checked()""" |
| 2570 | return self.is_checked(selector, by=by, timeout=timeout) |
| 2571 | |
| 2572 | def check_if_unchecked(self, selector, by="css selector"): |
| 2573 | """If a checkbox or radio button is not checked, will check it.""" |
nothing calls this directly
no test coverage detected