美文网首页
web自动化测试环境搭建

web自动化测试环境搭建

作者: xiaohan_zhang | 来源:发表于2020-05-14 16:45 被阅读0次

    自动化工具:selenium + webdriver
    脚本语言为:Python3.x
    浏览器:Chrome
    系统环境:Mac
    编译工具:Pycharm

    一、安装Python环境

    Mac一般自带Python环境,不过老版本Mac自带的是Python2。
    可以通过brew安装
    brew install python3
    也可以手动下载安装,不过还是建议brew,brew安装不需要配置环境变量就可以直接使用。
    Python3下载地址:https://www.python.org/downloads/mac-osx/
    也可以用过brew安装 建议这种方式
    配置环境变量
    vim ~/.bash_profile

    PATH=Python3安装路径/3.8.2/bin:${PATH} 
    export PATH
    

    source ~/.bash_profile

    二、安装Pycharm

    下载地址:https://www.jetbrains.com/pycharm/download/#section=mac
    顺便提供破解工具:https://pan.baidu.com/s/1Glsg28WNHbrpKMNCM4rsEA 密码: m5cq
    安装后,免费试用并运行该Pycharm,然后将jetbrains-agent-latest.zip文件拖放到程序窗口就可以了。

    三、安装selenium
    1. 安装到本地,可以通过pip命令
      pip3 install selenium
      python3 pip install selenium
    2. 安装到Pycharm虚拟环境
      在项目的Project Interpreter中安装即可
    四、Chrome浏览器下载

    百度一下

    五、ChromeDriver下载

    下载与Chrome浏览器对应的版本
    官方地址:https://sites.google.com/a/chromium.org/chromedriver/
    淘宝镜像:
    http://npm.taobao.org/mirrors/chromedriver/
    https://chromedriver.storage.googleapis.com/index.html
    配置环境变量:export PATH=$PATH:webdriver所在目录
    注意:是所在目录
    如export PATH=$PATH:/Users/username/tool
    如果直接放到Python目录下Scripts目录中,则不需要配置环境变量。

    相关文章

      网友评论

          本文标题:web自动化测试环境搭建

          本文链接:https://www.haomeiwen.com/subject/gcntohtx.html