本帖最后由 codegay 于 2017-11-25 18:59 编辑
- # -*- coding: utf-8 -*-
- """
- Created on Sat Nov 25 02:02:55 2017
- @author: codegay
- python3 & 编辑器 == spyder
- """
-
- from selenium import webdriver
- from time import sleep
- from urllib.request import urlretrieve
- appdata = "c:/chrome-selenium"
- options = webdriver.ChromeOptions()
-
- options.add_argument("user-data-dir=" + appdata)
-
- chrome = webdriver.Chrome(chrome_options=options)
-
- chrome.get("http://pmmp.cnki.net/OperatingDiscipline/Details.aspx?id=0001")
- sleep(3)
复制代码 selenium 是一套控制浏览器进行web自动化测试的框架,支持各种语言。这是python用selenium在chrome中打开一个页面的例子。 |