Discussion:
[selenium-users] Import error
What You Want
2017-03-08 17:20:26 UTC
Permalink
Hi

I have one query please

i have met with error in python selenium scripts on running time

Traceback (most recent call last):
File "C:\python36\Scripts\first.py", line 2, in <module>
from selenium.webdriver.common.keys import keys
ImportError: cannot import name 'keys'


Above error occuring on running below script:
from selenium import webdriver
from selenium.webdriver.common.keys import keys

driver = webdriver.Firefox()
driver.get("http://www.python.org")





Can you help me for solve this issue ?
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-users+***@googlegroups.com.
To post to this group, send email to selenium-***@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/c44e25f7-61ea-4fc9-81eb-cadb1e6e2ac5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Doug Dragon
2017-03-09 18:32:02 UTC
Permalink
Hi there,

The keys import should be upper case:
from selenium.webdriver.common.keys import Keys

Hope that helps,
-Doug
Post by What You Want
Hi
I have one query please
i have met with error in python selenium scripts on running time
File "C:\python36\Scripts\first.py", line 2, in <module>
from selenium.webdriver.common.keys import keys
ImportError: cannot import name 'keys'
from selenium import webdriver
from selenium.webdriver.common.keys import keys
driver = webdriver.Firefox()
driver.get("http://www.python.org")
Can you help me for solve this issue ?
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-users+***@googlegroups.com.
To post to this group, send email to selenium-***@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/9a3ef10d-5b4c-4c0c-a714-10194a406057%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...