How can I send multiple tabs using Selenium?
When I run:
uname = browser.find_element_by_name("text")
uname.send_keys(Keys.TAB)
the next item is selected. When executed uname.send_keys(Keys.TAB), nothing happens again - in fact, the next element is selected from uname→, so that it is the same as when it was run once.
How can I jump forward several times - mainly since I pressed TAB several times?
pinas source
share