google chromeDriver 地址

#chrome driver 下载地址

https://getwebdriver.com/chromedriver

#chrome brower下载地址

https://googlechromelabs.github.io/chrome-for-testing/

centos 安装的dockerFile的部分命令:

#安装browser

wget https://dl.google.com/linux/chrome/rpm/stable/x86_64/google-chrome-stable-124.0.6367.91-1.x86_64.rpm &&

yum localinstall -y ./google-chrome-stable-124.0.6367.91-1.x86_64.rpm &&

rm -f ./google-chrome-stable-124.0.6367.91-1.x86_64.rpm &&

#安装chrome driver

wget https://storage.googleapis.com/chrome-for-testing-public/124.0.6367.91/linux64/chromedriver-linux64.zip &&

unzip chromedriver-linux64.zip &&

mv -f chromedriver-linux64 /usr/bin/ &&

chmod +x /usr/bin/chromedriver-linux64/ &&

cp /usr/bin/chromedriver-linux64/chromedriver /usr/bin/ && ]

#安装openssl 1.1.1K

wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz &&

tar zxvf openssl-1.1.1k.tar.gz &&

cd openssl-1.1.1k/ &&

./config --prefix=/usr/local/openssl --openssldir=/usr/local/openssl shared zlib &&

make &&

make install &&

ln -sf /usr/local/openssl/bin/openssl /usr/bin/openssl &&

echo "/usr/local/openssl/lib" > /etc/ld.so.conf.d/openssl.conf &&

ldconfig

相关推荐
吾爱星辰1 小时前
Kotlin 处理字符串和正则表达式(二十一)
java·开发语言·jvm·正则表达式·kotlin
ChinaDragonDreamer1 小时前
Kotlin:2.0.20 的新特性
android·开发语言·kotlin
FreakStudio1 小时前
全网最适合入门的面向对象编程教程:56 Python字符串与序列化-正则表达式和re模块应用
python·单片机·嵌入式·面向对象·电子diy
IT良1 小时前
c#增删改查 (数据操作的基础)
开发语言·c#
丶21361 小时前
【CUDA】【PyTorch】安装 PyTorch 与 CUDA 11.7 的详细步骤
人工智能·pytorch·python
Kalika0-02 小时前
猴子吃桃-C语言
c语言·开发语言·数据结构·算法
_.Switch2 小时前
Python Web 应用中的 API 网关集成与优化
开发语言·前端·后端·python·架构·log4j
代码雕刻家2 小时前
课设实验-数据结构-单链表-文教文化用品品牌
c语言·开发语言·数据结构
一个闪现必杀技2 小时前
Python入门--函数
开发语言·python·青少年编程·pycharm
Fan_web2 小时前
jQuery——事件委托
开发语言·前端·javascript·css·jquery