使用以下代码检查网站是否使用 selenium 和 python 在 opera 中加载:
def test_opera_compatability(self):
driver = webdriver.Opera("functional_tests/operadriver")
driver.get("https://www.google.com/")
driver.quit()
它返回以下错误:
消息:“operadriver”可执行文件需要在 PATH 中。
chrome 的类似代码按预期工作,如下所示:
def test_chrome_compatability(self):
driver = webdriver.Chrome('functional_tests/chromedriver')
driver.get("https://www.google.com/")
driver.quit()