URL: https://www.omgeo.com/login I want to grab the box for Email in this case.
I tried
tem = driver.find_element_by_id('user')
tem = driver.find_element_by_name('user')
tem = driver.find_element_by_class_name('ie-background background')
tem = driver.find_element_by_xpath('//input[@id="user"]')
Selenium reports the same kind of error: Unable to locate the element.
If I click inspection, I can find HTML code
<input type="text" name="user" id="user" size="30" class="ie-background background" tabindex="1" autocomplete="off">
However, It will give me a different HTML code when I click view source code which simply does have that piece of HTML code, I guess that's probably why selenium cannot grab the Email box.