web自动化_环境安装配置

安装工具:

链接:https://pan.baidu.com/s/1o4ykg5DuZfED6hVQvpL7UQ 

提取码:ww6t

1.python3.7.1环境配置

2.开发工具https://www.jianshu.com/writer#/notebooks/32729041/notes/38937155?callback=true

vscode or pycharm

3.Chrome 浏览器

4.浏览器驱动   可自行下载:https://npm.taobao.org/mirrors/chromedriver

浏览器驱动的环境变量配置

    1)where python 查看python绝对路径

    2)tart +路径    打开python路径

    3)把chromedriver放置在python.exe的根目录下即可

5.selenium库的安装 :在vscode中直接安装:pip install selenium

6.Git安装

    1)注册GitHub账号:https://github.com/

    2)GitHub基本用法:

        1.  git clone + git 里的文件地址  把文件拉到本地

        2.  cd +文件  打开文件

        3.  notepad demo.py 创建py文件

        4.  git add -A  把所有新建或修改的文件添加到本地的git库中

        5.  git config --global user.email "[email protected]"  配置邮件(第一次提交需配置)

        6.  git config --global user.name "chenghong"    配置用户名(第一次提交需配置)

        7.  git commit -m "填写提交的内容"(-m 表示提交的信息是什么,必须要写),

            如:git commit -m "add             demo.py"  提交至本地文件

        8.  git push  提交文件至服务器

附加:

使用命令行——打开命令行:windows+R

1.cd 切换目录

2.ls linux下查看当前目录的文件或文件夹

3.dir windows下查看当前目录的文件或文件夹

4.mkdir 创建目录

5.notepad demo.py  创建文件

6.code .  使用vscode打开当前目录,如:

#>cd Desktop

#>mkdir ch

#>cd ch

#>code .

你可能感兴趣的:(web自动化_环境安装配置)