github seleniumbase/SeleniumBase v3.3.6
3.3.6 - Add a shortcut for cycling through elements with the "tab" key and then clicking the active element

latest releases: v4.31.4, v4.31.3, v4.31.2...
2 years ago

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:

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:

self.click_active_element()

Don't miss a new SeleniumBase release

NewReleases is sending notifications on new releases.