python3下安装Selenium插件和驱动
Posted 多情俏狐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3下安装Selenium插件和驱动相关的知识,希望对你有一定的参考价值。
import sys
import os
import shutil
import time
os.system(‘pip install selenium‘)
file_name="IEDriverServer.exe"
#获取路径
python_path=os.path.dirname(sys.executable)
system_path=os.environ[‘WINDIR‘]+‘\system32‘
#安装IEDriverServer
Desc_py_path=python_path+"\"+file_name
Desc_sys_path=system_path+"\"+file_name
shutil.copyfile(file_name,Desc_py_path)
shutil.copyfile(file_name,Desc_sys_path)
print("Selenium插件和驱动已经安装完成!!!")
以上是关于python3下安装Selenium插件和驱动的主要内容,如果未能解决你的问题,请参考以下文章
mac os+selenium2+chrome驱动+python3