- 安装python,建议在官网下载python3以上的版本
- 安装easy_install,找度娘
- 安装selenium,在命令行窗口下输入:pip install -U selenium
- 下载chromedriver.exe,前往https://sites.google.com/a/chromium.org/chromedriver/downloads根据自己电脑上的Chrome版本选择版本下载,
本机Chrome版本在Chrome右上角菜单->帮助->关于Google Chrome查看;下载完成后解压到Chrome的安装目录,默认是在
C:\Program Files (x86)\Google\Chrome\Application - 将谷歌浏览器的安装目录(默认是C:\Program Files (x86)\Google\Chrome\Application),添加到系统的用户环境变量path中
- 将以下测试代码复制并另存为selenium_test.py(文件存放的位置有自己决定,只是个临时测试文件)
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
import time browser = webdriver.Chrome() # Get local session of Chrome
browser.get("http://www.yahoo.com") # Load page
assert "Yahoo" in browser.title
elem = browser.find_element_by_id("uh-search-box") # Find the query box
elem.send_keys("qq" + Keys.RETURN)
time.sleep(0.2) # Let the page load, will be added to the API在文件存放的位置使用命令行运行: python selenium_test.py
如果有以下的错误信息:AttributeError: 'Service' object has no attribute 'process'
请检查步骤4、5是否正确配置了,如果确定无误请使用以下办法尝试解决:
将第四步解压出来的chromedriver.exe文件复制一份到当前测试文件的目录下,再执行测试文件。
相关文章
- 03-01Openstack 在VMware虚拟机ESXI和Workstation下安装需要更改参数
- 03-01[powershell] insert current time to file / Windows下插入当前时间到指定文件
- 03-01phpstduy下sql libs下载,安装教程。
- 03-01Windows下 Google test 编译
- 03-01Tomcat9安装windows服务
- 03-01Windows如何安装tomcat服务
- 03-01debian下如何源码安装tmux
- 03-01mac x Yosemide(10.10) 下安装 jdk 1.7 (jdk 1.8)的方法
- 03-01ubantu18-ROS环境下配置IMU(STIM300),含驱动下载安装与硬件配置。
- 03-01Windows系统中安装GIT