我是自动化新手,我正在开发 ubuntu 操作系统,现在我在机器人框架中有几个测试用例,我正在尝试使用 opera 浏览器运行它们,但是我下载后不知道如何安装驱动程序从这里压缩:
https://github.com/operasoftware/operachromiumdriver/releases
设置它的步骤是什么?
我是自动化新手,我正在开发 ubuntu 操作系统,现在我在机器人框架中有几个测试用例,我正在尝试使用 opera 浏览器运行它们,但是我下载后不知道如何安装驱动程序从这里压缩:
https://github.com/operasoftware/operachromiumdriver/releases
设置它的步骤是什么?
好吧,如果有人需要它,我解决了它,这些是步骤:
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.