Selenium Python firefox webdriver



FirefoxProfile profile = new FirefoxProfile();

profile.setPreference("network.proxy.type"1);

profile.setPreference("network.proxy.http","localhost";

profile.setPreference("network.proxy.http_port" 3128);

WebDriver driver = new FirefoxDriver(firefox_profile=profile);

我使用下面的代码配置,但它给出了一个错误。您应该包括执行路径。我怎么解决它呢?我正在pycharm中运行此代码。

你也可以看到更简短的图片

需要指定路径

  1. 试试这个选项1
  2. 选项2
from selenium import webdriver
browser = webdriver.Firefox(executable_path = '/path/to/geckodriver')
browser.get('https://www.google.com') 

相关内容

  • 没有找到相关文章

最新更新