gpt4 book ai didi

c# - 以不同用户身份运行的 selenium web 驱动程序未获取用户的配置文件/ session

转载 作者:可可西里 更新时间:2023-11-01 11:47:28 27 4
gpt4 key购买 nike

我有一个奇怪的情况,我稍微修改了 selenium web 驱动程序代码以允许驱动程序服务在不同的用户下启动,对 github 中的代码的更改是:

public void Start()
{
this.driverServiceProcess = new Process();
if (this.user != null)
{
this.driverServiceProcess.StartInfo.UserName = user.Name;
this.driverServiceProcess.StartInfo.Password = user.Password;
this.driverServiceProcess.StartInfo.Domain = user.Domain;
}
this.driverServiceProcess.StartInfo.FileName = Path.Combine(this.driverServicePath, this.driverServiceExecutableName);
this.driverServiceProcess.StartInfo.Arguments = this.CommandLineArguments;
this.driverServiceProcess.StartInfo.UseShellExecute = false;
this.driverServiceProcess.StartInfo.CreateNoWindow = this.hideCommandPromptWindow;
this.driverServiceProcess.Start();
bool serviceAvailable = this.WaitForServiceInitialization();

if (!serviceAvailable)
{
string msg = "Cannot start the driver service on " + this.ServiceUrl;
throw new WebDriverException(msg);
}
}

在实例化 Web 驱动程序的调用中,从我的外部代码传入用户详细信息的位置:

new ChromeDriver(userName, password, domain);

new InternetExplorerDriver(ieOptions, userName, password, domain);

并通过传播。

这在所需的用户凭据下成功启动了 chrome 驱动程序,但 IE 出现问题。

此外,chrome 驱动程序的行为与作为给定用户手动启动的 chrome 的行为不同(即不通过 selenium 驱动程序)。特别是在 NTLM 质询中不会自动传递用户凭据。

我发现,如果我有一个以所需用户身份运行的交互式 session (只需从命令行使用 runas /user:<theUser> cmd.exe 并保持 session 打开),那么浏览器的所有功能在通过selenium 网络驱动程序,包括自动响应 NTLM 挑战。

如果我使用 Process.Start()在创建 Web 驱动程序之前以所需用户身份启动 cmd.exe 是行不通的。

我的问题是:

与从命令行启动进程的交互式 session 相比,以编程方式启动进程(使用 Process.Start())有何不同?

有什么方法可以忠实地重现从代码中的命令行启动 session 的效果,以便我可以自动化该过程并让我的网络驱动程序按照我的期望执行?

注意:我尝试使用 .net 模拟启动 webdriver(如建议的 herehere ),而不是修改 selenium 代码以在另一个用户下运行驱动程序服务,但是从驱动程序发送的请求发送到服务器的全部都是在我的用户下发送的,而不是模拟指定的用户(参见 here )

最佳答案

当前的 Selenium .NET 源代码不再需要此技术。 DriverProcessStarting 事件现在允许用户修改用于启动驱动程序服务进程的 ProcessStartInfo 对象。完成此操作的代码如下所示:

假设您的用户对象看起来像这样:

public class User
{
public string UserName { get; set; }
public SecureString Password { get; set; }
public string Domain { get; set; }
public bool LoadUserProfile { get; set; }
}

您可以使用如下内容:

public IWebDriver StartInternetExplorerDriver(InternetExplorerOptions options, User user)
{
InternetExplorerDriverService service = InternetExplorerDriverService.CreateDefaultService();
service.DriverProcessStarting += (object sender, DriverProcessStartingEventArgs e) =>
{
e.DriverServiceProcessStartInfo.UserName = user.UserName;
e.DriverServiceProcessStartInfo.Password = user.Password;
e.DriverServiceProcessStartInfo.Domain = user.Domain;
e.DriverServiceProcessStartInfo.LoadUserProfile = user.LoadUserProfile;
};

return new InternetExplorerDriver(service, options);
}

关于c# - 以不同用户身份运行的 selenium web 驱动程序未获取用户的配置文件/ session ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41282540/

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