我刚接触自动化,我在ubuntu操作系统上工作,现在我在机器人框架中有几个测试用例,我正在尝试使用opera浏览器运行它们,但我不知道如何安装驱动程序,我从这里下载了压缩文件:
https://github.com/operasoftware/operachromiumdriver/releases
设置它的步骤是什么?
发布于 2020-01-04 05:16:16
好吧,如果有人需要它,我解决了它,以下是步骤:
1. Go to https://github.com/operasoftware/operachromiumdriver/releases
2. Right click on operadriver_linux64.zip
3. Copy link address
4. Open Terminal
5. type wget https://github.com/operasoftware/operachromiumdriver/releases/download/v.78.0.3904.87/operadriver_linux64.zip (this is the address you copied before)
6. unzip operadriver_linux64.zip
7. sudo mv operadriver /usr/bin/operadriver
8. sudo chown root:root /usr/bin/operadriver
9. sudo chmod +x /usr/bin/operadriver
10. Verify it is correct installation by typing... which operadriver (you should get the path like usr/bin/operadriver.https://stackoverflow.com/questions/59585326
复制相似问题