How can I send multiple tabs with Selenium?
When I run:
uname = browser.find_element_by_name("text") uname.send_keys(Keys.TAB)
As the OP states: "actually the next element from uname is selected".
uname
After the first key you have moved off the element, so no further s will be recognized by that element. You need to locate the parent element and send keys to it.