I'm coding a selenium automated bot, and I want to send keys to a input that I got from iFrame, check the code line:
username = bot.find_element_by_xpath("//iframe[@title='Registration form' and @class='top']")
Can you guys help me? I can click on the input, but, on send the keys, it doesn't work and deselect the input field.
You don't send character sequence to the
<iframe>
element rather you would send character sequence to the<input>
element within the<iframe>
. As the the desired element is within a<iframe>
so you have to:Induce WebDriverWait for the desired frameToBeAvailableAndSwitchToIt.
Induce WebDriverWait for the desired elementToBeClickable.
You can use either of the following Locator Strategies:
Using
XPATH
:Using
CSS_SELECTOR
:Note : You have to add the following imports :
References
You can find a couple of relevant discussions in: