python+selenium安装过程出现ImportError: No module named selenium问题

初学python+selenium的第一脚本。

from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
import time


browser = webdriver.Firefox() # Get local session of firefox
browser.get("http://www.yahoo.com") # Load page
assert "Yahoo!" in browser.title
elem = browser.find_element_by_name("p") # Find the query box
elem.send_keys("seleniumhq" + Keys.RETURN)
time.sleep(0.2) # Let the page load, will be added to the API
try:
    browser.find_element_by_xpath("//a[contains(@href,'http://seleniumhq.org')]")
except NoSuchElementException:
    assert 0, "can't find seleniumhq"
browser.close()
编译过程中总是出现报错ImportError: No module named selenium,在网上找了很多解决办法。

1.将\selenium-remote-control-1.0.1\selenium-python-client-driver-1.0.1下把selenium.py拷贝到\Python25\Lib目录

2.安装selenium ide。

3.修改D:\python27\Lib\site-packages\selenium目录下的__init__.pyc文件。

以上全试了一遍,没用。直接重装了Python,就解决了。

你可能感兴趣的:(python+selenium安装过程出现ImportError: No module named selenium问题)