gpt4 book ai didi

c# - Selenium Webdriver + PhantomJS 保持在大约 :blank for a specific site

转载 作者:太空狗 更新时间:2023-10-29 17:09:49 24 4
gpt4 key购买 nike

我正在尝试将 PhantomJS 与 Selenium Webdriver 一起使用并获得成功,但对于特定网站,我发现它没有导航到 URL。我已经用 Python 和 C# 试过了。
Python 代码:

dcap = dict(webdriver.DesiredCapabilities.PHANTOMJS)
dcap["phantomjs.page.settings.userAgent"] = ("Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36")
service_args = ['--load-images=false', '--proxy-type=None']
driver = webdriver.PhantomJS(executable_path="C:\\phantomjs.exe", service_args=service_args, desired_capabilities=dcap)
driver.get("https://satoshimines.com")
print driver.current_url

这段代码的输出是:about:blank
而它适用于任何其他网站。

与 C# 相同的代码:

IWebDriver driver = new PhantomJSDriver();
driver.Navigate().GoToUrl("https://satoshimines.com");
Console.WriteLine(driver.Url);

C#程序的输出也是一样的。

我被困在这里需要帮助。

最佳答案

以下是c#的完整代码解决方案——

PhantomJSDriverService service = PhantomJSDriverService.CreateDefaultService();
service.IgnoreSslErrors = true;
service.LoadImages = false;
service.ProxyType = "none";

driver = new PhantomJSDriver(service);

关于c# - Selenium Webdriver + PhantomJS 保持在大约 :blank for a specific site,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20705027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com