gpt4 book ai didi

c# - 将 cefSharp 客户端与 Selenium Chrome 驱动程序绑定(bind) c#

转载 作者:行者123 更新时间:2023-12-01 18:48:28 26 4
gpt4 key购买 nike

我找到了这个https://bitbucket.org/chromiumembedded/cef/wiki/UsingChromeDriver链接,其中包含 cef 客户端和 Selenium 驱动程序的 java 绑定(bind)。

所以我准备了一个供我使用它与 C# Windows 应用程序。我所做的是创建一个新的 winapp 项目 x86,其中仅包含以下代码,运行时没有错误或问题:

using CefSharp;
using CefSharp.WinForms;
namespace ClientBrowser
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

public ChromiumWebBrowser browser;
private void Form1_Load(object sender, EventArgs e)
{
var settings = new CefSettings();
settings.CefCommandLineArgs.Add("enable-npapi", "1");
settings.IgnoreCertificateErrors = true;
//settings.CefCommandLineArgs.Add("enable-system-flash", "1");
Cef.Initialize(settings);
browser = new ChromiumWebBrowser("");
this.Controls.Add(browser);
browser.Dock = DockStyle.Fill;
}
}
}

上面的项目充当以下新 winapp 项目 x86 的 CEF 客户端:

    private void Form1_Load(object sender, EventArgs e)
{
try {
var options = new ChromeOptions();
options.BinaryLocation = @"path/ClientBrowser.exe";
//options.AddArgument("--log-level=3");
var service = ChromeDriverService.CreateDefaultService();
//service.HideCommandPromptWindow = true;
driver = new ChromeDriver(service,options); //chromedriver.exe

driver.Navigate().GoToUrl("http://stackoverflow.com/");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}

现在当我运行上面的新项目时,

chromedriver.exe 说:

在端口 57883 上启动 ChromeDriver 2.21.371459 (36d3d07f660ff2bc1bf28a75d1cdabed0983e7c4)
仅允许本地连接。

然后

ClientBrowser.exe 打开时没有显示任何内容,也没有遇到错误,但 60 秒后我得到:

对远程 WebDriver 服务器的 URL http://localhost:57883/session 的 HTTP 请求在 60 秒后超时。

但它应该为我打开http://stackoverflow.com/,我不知道我做错了什么,我没有包含任何selenium-server-standalone- x.y.z.jar?我需要这个吗?如果需要,请告诉我如何包含它。

还尝试使用管理员权限运行它

有没有办法直接将 ChromeDriverChromiumWebBrowser 绑定(bind),这样就不需要 cefclient.exe

还尝试使用RemoteWebDriver:

       try {
var options = new ChromeOptions();
options.BinaryLocation = @"C:\pathto\ClientBrowser.exe";
options.AddArgument("--remote-debugging-port=1131");
options.AddArgument("url=data:,");
//options.AddArgument("--log-level=3");

var service = ChromeDriverService.CreateDefaultService();
//service.HideCommandPromptWindow = true;
service.Port = 1131;
service.Start();

DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.SetCapability(ChromeOptions.Capability, options);

driver = new RemoteWebDriver(service.ServiceUrl, capabilities); //DesiredCapabilities.Chrome()

//driver = new ChromeDriver(service,options); //chromedriver.exe

driver.Navigate().GoToUrl("http://stackoverflow.com/");

}

但是RemoteWebDriver对我来说也不起作用,现在真的卡住了,拜托

任何帮助或建议都会对我和其他想要像我一样做同样事情的人有很大帮助,提前致谢。

最佳答案

在花了很多时间试图实现与OP相同的目标之后,我刚刚偶然发现了这一点。在针对 cefclient.exe 进行测试时,我也能够让 Selenium 正常工作。然而,我试图测试的基于 CEF 的模拟应用程序无法正常运行,而且无论我尝试什么端口,Selenium 都会超时。

结果证明解决方案相当简单。看来,当您启动 CEF 嵌入式浏览器时,您可以传入 URL 字符串作为地址,也可以将其留空。如果将其留空,该页面将为空。这似乎会导致 Selenium 超时。如果您添加 URL,Selenium 可以正常连接,并且不需要端口设置等。只是二进制位置开关。所以我的解决方案如下:

在CEF初始化代码中:

    _browser = new ChromiumWebBrowser("data:,")
{
Dock = DockStyle.Fill,
};

在 Selenium 初始化代码中:

var options = new ChromeOptions { BinaryLocation = "PathToYourCef.exe" };

cefDriver = new ChromeDriver(options);

关于c# - 将 cefSharp 客户端与 Selenium Chrome 驱动程序绑定(bind) c#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35899813/

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