This is the HTML file I have. I am trying to use Selenium-Webdriver API along with ChromeDriver to send_keys
to an input
Just to summarize on what I learnt and implemented.
If you have mulitple frames/framesets, you will have to switch frames.
a. so first get to the default content.
driver.switch_to_default_content()
b. then get to the frame that you want to work with.
frame = driver.find_element_by_name('mainFrame')
Then play with the elements in that frame.