博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
selenium Chromediver
阅读量:7112 次
发布时间:2019-06-28

本文共 514 字,大约阅读时间需要 1 分钟。

 

 

Here we use wget to fetch the version number of the latest release, then plug the version into another wget invocation in order to fetch the chromedriver build itself:

12
LATEST=$(wget -q -O - http://chromedriver.storage.googleapis.com/LATEST_RELEASE)wget http://chromedriver.storage.googleapis.com/$LATEST/chromedriver_linux64.zip

Symlink chromedriver into /usr/local/bin/ so it’s in your PATH and available system-wide:

1
unzip chromedriver_linux64.zip && sudo ln -s $PWD/chromedriver /usr/local/bin/chromedriver

转载地址:http://imghl.baihongyu.com/

你可能感兴趣的文章
php中的cookie用法
查看>>
编译kernel:make Image uImage与zImage的区别
查看>>
Struts2工作原理及流程
查看>>
kindeditor编辑器图片水印
查看>>
oracle数据库获取指定表的列的相关信息
查看>>
维克里拍卖 Vickrey auction
查看>>
数学百家
查看>>
Vue.js——60分钟webpack项目模板快速入门
查看>>
nginx实现单服务代理多域名
查看>>
解压缩
查看>>
Docker镜像的获取与删除
查看>>
iOS - UIPasteboard
查看>>
Vrrp协议
查看>>
项目中js调用service和procedure的办法
查看>>
用友UAP
查看>>
Tomcat error: A child container failed during start
查看>>
jquery 时间戳和日期时间转化
查看>>
Codeforces Round #370 (Div. 2) C. Memory and De-Evolution 水题
查看>>
MySQL数据备份之mysqldump使用
查看>>
Oracle基础知识
查看>>