Add a shortcut for cycling through elements with the "tab" key and then clicking the active element. Eg. ``self.send_keys("html", "\t\t\t\t\n")`` This assumes that selector is ``html`` , and that the text is a series of tabs (zero or more ``\t``) followed by one ``\n`` at the end of the string. Examples: ```python self.send_keys("html", "\t\t\t\t\n") self.send_keys("html", "\t\n") self.send_keys("html", "\n") ``` Another way of clicking the active element right now is by calling: ```python self.click_active_element() ```