gpt4 book ai didi

java - 将 FireFoxProfile 与 RemoteWebDriver、Selenium Grid2 一起使用会导致功能异常

转载 作者:搜寻专家 更新时间:2023-11-01 03:33:47 24 4
gpt4 key购买 nike

我正在尝试以编程方式创建一个临时的 firefox 配置文件,用于使用 selenium grid2 进行的 selenium 测试。

这是我当前正在运行的代码。

DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setBrowserName("firefox");
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference(PREFERENCE_NAME,userAgent.getUserAgentString());
capabilities.setCapability(FirefoxDriver.PROFILE,profile);
RemoteWebDriver driver = new RemoteWebDriver(url, capabilities);

如果有关配置文件的所有行都被注释掉,此代码将运行。但是,按原样,它将导致此异常。

Caused by: org.openqa.selenium.WebDriverException: Error forwarding the new session cannot find : Capabilities [{browserName=firefox, version=, platform=ANY, firefox_profile=UEsDBBQACAgIAFxzBEkAAAAAAAAAA...}]

我知道异常是说它无法在 selenium 服务器上找到匹配的功能设置。但是,它应该是在传输配置文件,而不是寻找匹配的配置文件。 “firefox_profile=”后面的字符串是“profile.toJson()”的输出,所以看起来它在某种程度上是正确的。我只是想不通为什么服务器不接受它。

这是我的 selenium 服务器启动脚本

java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=6565 -cp selenium-server-standalone-2.53.0.jar org.openqa.grid.selenium.GridLauncher -role node -nodeConfig nodeconfig.json -hub http://192.168.5.151:4444/grid/register

节点配置文件

{
"capabilities": [
{
"browserName": "firefox",
"nativeEvents": true,
"acceptSslCerts": true,
"javascriptEnabled": true,
"takesScreenshot": true,
"firefox_profile": "selenium",
"version": "44.0",
"platform": "WIN10",
"maxInstances": 1,
"firefox_binary": "C:\\Program Files\\Mozilla\ Firefox\\firefox.exe",
"cleanSession": true,
"file.download.supported": true,
"file.download.watcher": "WindowsFirefoxDownloadWatcher",
"file.download.directory": "C:\\Users\\IEUser\\Downloads"
},
{
"browserName": "chrome",
"nativeEvents": true,
"maxInstances": 1,
"platform": "WIN10",
"webdriver.chrome.driver": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe"
},
{
"browserName": "MicrosoftEdge",
"nativeEvents": true,
"maxInstances": 1,
"platform": "WIN10"
}
],

"configuration":
{
"_comment" : "Windows 10 with file download support",
"cleanUpCycle": 2000,
"timeout": 0,
"port": 5555,
"host": ip,
"register": true,
"hubPort": 4444,
"maxSessions": 1,
"Dwebdriver.edge.driver=C:\\Program Files (x86)\\Microsoft Web Driver\\MicrosoftWebDriver.exe": ""
}
}

我对此进行了很多研究,但未能找到任何有类似问题的人/人。我能够通过直接在虚拟机上创建配置文件并在启动脚本中指定来选择配置文件。但是,这不是我要找的功能。

任何帮助将不胜感激!谢谢!

最佳答案

Error forwarding the new session cannot find : Capabilities [{browserName=firefox, version=, platform=ANY,

这基本上是 Grid 告诉您的方式,您请求 Grid 分配一个可以运行 firefox 的节点(无论平台风格或版本号如何),但是 Grid 没有任何这样的节点可供使用(在您的节点配置 JSON 文件中,您已指定 key firefox_profile 的值应为“Selenium”。

"firefox_profile": "selenium"

不确定为什么要在 JSON 配置文件中设置此键。

I understand that the exception is saying that it can't find a matching capabilities setup on the selenium server. However, it should be transferring the profile, not looking for a matching one.

只有在找到与请求的功能相匹配的节点时,网格才会执行此操作。在您的情况下,网格无法找到与您请求的任何内容匹配的任何节点,因此不会传输配置文件(因为此时目的地未知)。

因此,您需要从 node_config JSON 文件中删除 key “firefox_profile”才能使其正常工作。然后 firefox 配置文件将转发到有问题的特定节点,您的执行将开始使用您创建的 firefox 配置文件。

关于java - 将 FireFoxProfile 与 RemoteWebDriver、Selenium Grid2 一起使用会导致功能异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38776028/

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