FirefoxProfile 配置文件 = 新的 FirefoxProfile();
profile.setPreference("network.proxy.type", 1);
profile.setPreference("network.proxy.http", "localhost");
profile.setPreference("network.proxy.http_port", 3128);
WebDriver 驱动程序 = 新的 FirefoxDriver(firefox_profile=profile);
我正在使用下面的代码进行配置,但它给出了一个错误。您应该需要包含执行路径。我该如何解决。我在 pycharm 中运行这段代码。