Pythonにセレンをインストールする方法を知っている人はいますか?
はい、Windows を使用しています。私のpythonは2.7です
だから私はこのリンクを使ってみました: https://pypi.python.org/pypi/selenium
しかし問題は、「pip install-U command selenium」をどこで実行するかです。
Pythonにセレンをインストールする方法を知っている人はいますか?
はい、Windows を使用しています。私のpythonは2.7です
だから私はこのリンクを使ってみました: https://pypi.python.org/pypi/selenium
しかし問題は、「pip install-U command selenium」をどこで実行するかです。
pip install -U selenium
後
java -jar selenium-server-standalone-2.31.0.jar
簡単な例:
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()