• <bdo id='LjyZj'></bdo><ul id='LjyZj'></ul>

      <small id='LjyZj'></small><noframes id='LjyZj'>

    1. <legend id='LjyZj'><style id='LjyZj'><dir id='LjyZj'><q id='LjyZj'></q></dir></style></legend>

      <i id='LjyZj'><tr id='LjyZj'><dt id='LjyZj'><q id='LjyZj'><span id='LjyZj'><b id='LjyZj'><form id='LjyZj'><ins id='LjyZj'></ins><ul id='LjyZj'></ul><sub id='LjyZj'></sub></form><legend id='LjyZj'></legend><bdo id='LjyZj'><pre id='LjyZj'><center id='LjyZj'></center></pre></bdo></b><th id='LjyZj'></th></span></q></dt></tr></i><div id='LjyZj'><tfoot id='LjyZj'></tfoot><dl id='LjyZj'><fieldset id='LjyZj'></fieldset></dl></div>

    2. <tfoot id='LjyZj'></tfoot>

      带有 Chrome 驱动程序的 Selenium 网格(WebDriverExcept

      时间:2023-09-28

        • <bdo id='Bubje'></bdo><ul id='Bubje'></ul>

              <tbody id='Bubje'></tbody>
                <i id='Bubje'><tr id='Bubje'><dt id='Bubje'><q id='Bubje'><span id='Bubje'><b id='Bubje'><form id='Bubje'><ins id='Bubje'></ins><ul id='Bubje'></ul><sub id='Bubje'></sub></form><legend id='Bubje'></legend><bdo id='Bubje'><pre id='Bubje'><center id='Bubje'></center></pre></bdo></b><th id='Bubje'></th></span></q></dt></tr></i><div id='Bubje'><tfoot id='Bubje'></tfoot><dl id='Bubje'><fieldset id='Bubje'></fieldset></dl></div>
                <tfoot id='Bubje'></tfoot>

                <small id='Bubje'></small><noframes id='Bubje'>

                <legend id='Bubje'><style id='Bubje'><dir id='Bubje'><q id='Bubje'></q></dir></style></legend>
                本文介绍了带有 Chrome 驱动程序的 Selenium 网格(WebDriverException:驱动程序可执行文件的路径必须由 webdriver.chrome.driver 系统属性设置)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我正在尝试让我的 Selenium Grid 在 Chrome 驱动程序上运行.

                I am trying to get my Selenium Grid running on Chrome driver.

                一开始我启动了集线器和节点:java -jar selenium-server-standalone-2.45.0.jar -role hubjava -jar selenium-server-standalone-2.45.0.jar -role node -hub http://localhost:4444/grid/register

                At first I started hub and node: java -jar selenium-server-standalone-2.45.0.jar -role hub java -jar selenium-server-standalone-2.45.0.jar -role node -hub http://localhost:4444/grid/register

                然后我开始我的测试:

                public class ChromeDriverTest {
                    private WebDriver driver = null;
                    String  BaseURL,NodeURL;
                
                @Before
                public void before() throws Exception{
                    BaseURL="http://www.google.com";
                    NodeURL="http://localhost:4444/wd/hub";
                    File file = new File("C:\Users\pushkaryova\Desktop\Nexus\driver\chromedriver.exe");
                    System.setProperty("webdriver.chrome.driver", file.getAbsolutePath());
                    DesiredCapabilities capa =DesiredCapabilities.chrome();
                    capa.setBrowserName("chrome");
                    capa.setPlatform(Platform.ANY);
                    driver=new RemoteWebDriver(new URL(NodeURL),capa);
                }
                
                @Test
                public void GoogleSearch() throws Exception {
                    driver.get("http://www.google.com");
                    WebElement searchBox = driver.findElement(By.xpath("//div[3]/div/input[1]"));
                    hightlight(searchBox);
                    driver.findElement(By.xpath("//div[3]/div/input[1]")).clear();
                    driver.findElement(By.xpath("//div[3]/div/input[1]")).sendKeys("Test");
                    driver.findElement(By.xpath("//button")).click();
                
                }
                
                public void hightlight(WebElement webElement) throws InterruptedException {
                    for (int i = 0; i < 2; i++) {
                        JavascriptExecutor js = (JavascriptExecutor) driver;
                        js.executeScript(
                                "arguments[0].setAttribute('style', arguments[1]);",
                                webElement, "color: red; border: 3px solid red;");
                    }
                }
                

                }

                并得到一个错误:org.openqa.selenium.WebDriverException:驱动程序可执行文件的路径必须由webdriver.chrome.driver系统属性设置

                and get an error: org.openqa.selenium.WebDriverException: The path to the driver executable must be set by the webdriver.chrome.driver system property

                我的代码有什么问题?

                推荐答案

                driver 可执行文件需要在节点机器上物理可用.您可以在启动node

                The driver executable needs to be avaiable physically on node machine. You can set the path to exe while starting the node

                在命令中添加这一行

                -Dwebdriver.chrome.driver=./chromedriver.exe

                我从 json 文件中配置了这个,发现这更容易

                I configure this from json file and found that's little easier

                名为 DefaultNode.json 的 json 文件

                {
                  "capabilities":
                      [
                        {
                          "browserName": "firefox",
                          "maxInstances": 5,
                          "seleniumProtocol": "WebDriver"
                        },
                        {
                          "browserName": "chrome",
                          "maxInstances": 5,
                          "seleniumProtocol": "WebDriver"
                        },
                        {
                          "platform": "WINDOWS",
                          "browserName": "internet explorer",
                          "maxInstances": 1,
                          "seleniumProtocol": "WebDriver"
                        }
                      ],
                  "configuration":
                  {
                    "proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
                    "maxSession": 5,
                    "port": 5555,
                    "host": ip,
                    "register": true,
                    "registerCycle": 5000,
                    "hubPort": 4444,
                    "hubHost": ip
                  }
                }
                

                使用 json 配置启动节点

                java -jar selenium-server-standalone-2.45.0.jar -role webdriver -nodeConfig DefaultNode.json -Dwebdriver.ie.driver=.IEDriverServer.exe
                

                注意 IEDriverServer.exejson 文件放在同一目录

                Notice the IEDriverServer.exe is placed in same directory with json file

                这篇关于带有 Chrome 驱动程序的 Selenium 网格(WebDriverException:驱动程序可执行文件的路径必须由 webdriver.chrome.driver 系统属性设置)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:SessionNotFoundException:会话 ID 为空.调用 quit() 后使用 下一篇:如何设置“价值"?使用硒输入网页元素?

                相关文章

                最新文章

                <i id='kUZDP'><tr id='kUZDP'><dt id='kUZDP'><q id='kUZDP'><span id='kUZDP'><b id='kUZDP'><form id='kUZDP'><ins id='kUZDP'></ins><ul id='kUZDP'></ul><sub id='kUZDP'></sub></form><legend id='kUZDP'></legend><bdo id='kUZDP'><pre id='kUZDP'><center id='kUZDP'></center></pre></bdo></b><th id='kUZDP'></th></span></q></dt></tr></i><div id='kUZDP'><tfoot id='kUZDP'></tfoot><dl id='kUZDP'><fieldset id='kUZDP'></fieldset></dl></div>
                1. <tfoot id='kUZDP'></tfoot>
                2. <small id='kUZDP'></small><noframes id='kUZDP'>

                  • <bdo id='kUZDP'></bdo><ul id='kUZDP'></ul>
                  <legend id='kUZDP'><style id='kUZDP'><dir id='kUZDP'><q id='kUZDP'></q></dir></style></legend>