selenium python环境搭建

selenium python 环境搭建
web页面自动化测试需要搭建selenium环境,selenium支持多种语言,这里介绍python环境。
1 环境
  windows环境,配置没有要求。
2 python安装:
  下载地址 https://www.python.org/getit/
  安装python 2.7.*版本,其他版本目前支持不好
  尝试cmd下输入python, 若无法调用python,需要将python的安装路径(python.exe的存储位置)添加到PATH系统变量中
3 安装pycharm集成开发环境
  晚上比较多资料,需要破解。
4 配置pycharm:
  打开pycharm,进入Settings
  选择project interpreter

  在右边的页面,选择"Project Interpreter"的下拉按钮,选中python.exe

selenium python环境搭建_第1张图片

5 安装selenium
  在Project Interpreter中点加号,

  安装完成后,回到Settings 页面,点击Apply即可


selenium python环境搭建_第2张图片

6 安装webdriver
  下载地址 http://www.seleniumhq.org/download/

  例如 安装chrome浏览器,下载对应版本webdriver

  复制chromedriver.exe到 C:\Program Files (x86)\Google\Chrome\Application 文件夹下

  或者将webdriver放到设置环境变量的目录

7 测试代码

from selenium.webdriver import Chrome
import os

def test():
    driver = Chrome()
    driver.get('http://baidu.com')
    print '1111'

test()
chrome打开百度,安装就成功,可以开始selenium探索了。

你可能感兴趣的:(selenium,python)