Web UI(python+Selenium)自动化环境搭建

环境准备:

  • Windows10

  • Python

  • Selenium

  • Webdirver

搭建步骤:

1、下载python和pycharm

Python官网:https://www.python.org/

安装指导:

Python安装教程-手把手教你安装_编程爱好者-阿新的博客-CSDN博客

Pychram官网:https://www.jetbrains.com/pycharm/

安装指导:

pycharm安装教程(2022)与使用_yummy、的博客-CSDN博客_pycharm安装教程

2、安装Selenium

打开cmd窗口,使用pip 命令安装 selenium pip install selenium

3、下载安装webdirver
  • Chrome:http://chromedriver.storage.googleapis.com/index.html

  • IE:http://selenium-release.storage.googleapis.com/index.html

1、首先查看浏览器版本:(浏览器设置--关于)

Web UI(python+Selenium)自动化环境搭建_第1张图片

选择下载与chrome浏览器相匹配的Chromedriver版本,解压后将chromedriver.exe放置到python的Scripts目录

输入命令:where python 即可看到python的安装目录

4、测试下环境是否正常,使用以下这段代码
# -*- coding:utf-8 -*-
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("http://baidu.com")

浏览器能正常打开百度,那么环境安装是正常的

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