selenium + python专题selenium+java专题Selenium 学习

python&selenium简单案例

2018-12-31  本文已影响2人  测试菜鸟

1.安装python

2.安装pip: easy_install pip

3.安装selenium:pip install -U selenium

下载chromedriver.exe

# -*- coding: UTF-8 -*-

from selenium import webdriver

browser = webdriver.Chrome('C:\Program Files (x86)\Google\Chrome\Application\chrome.exe')

browser.get("C:/test.html")

browser.get("http://www.baidu.com")

#print(browser.page_source)

#browser.close()

上一篇下一篇

猜你喜欢

热点阅读