All `target="_blank"` links become `target="_self"`. This prevents those links from opening in a new tab.
(self)
| 2842 | self.click(click_selector) |
| 2843 | |
| 2844 | def internalize_links(self): |
| 2845 | """All `target="_blank"` links become `target="_self"`. |
| 2846 | This prevents those links from opening in a new tab.""" |
| 2847 | self.set_attributes('[target="_blank"]', "target", "_self") |
| 2848 | |
| 2849 | def is_checked(self, selector): |
| 2850 | """Return True if checkbox (or radio button) is checked.""" |