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

      1. <tfoot id='mx6sg'></tfoot>

      2. <legend id='mx6sg'><style id='mx6sg'><dir id='mx6sg'><q id='mx6sg'></q></dir></style></legend>

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

        java.lang.Error:未解决的编译问题:WebDriver/ChromeDriver 在执行 selenium

        时间:2023-06-27

          <bdo id='Fewn1'></bdo><ul id='Fewn1'></ul>
              <tbody id='Fewn1'></tbody>

              • <legend id='Fewn1'><style id='Fewn1'><dir id='Fewn1'><q id='Fewn1'></q></dir></style></legend>

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

                  <tfoot id='Fewn1'></tfoot>
                  <i id='Fewn1'><tr id='Fewn1'><dt id='Fewn1'><q id='Fewn1'><span id='Fewn1'><b id='Fewn1'><form id='Fewn1'><ins id='Fewn1'></ins><ul id='Fewn1'></ul><sub id='Fewn1'></sub></form><legend id='Fewn1'></legend><bdo id='Fewn1'><pre id='Fewn1'><center id='Fewn1'></center></pre></bdo></b><th id='Fewn1'></th></span></q></dt></tr></i><div id='Fewn1'><tfoot id='Fewn1'></tfoot><dl id='Fewn1'><fieldset id='Fewn1'></fieldset></dl></div>
                1. 本文介绍了java.lang.Error:未解决的编译问题:WebDriver/ChromeDriver 在执行 selenium 测试时无法解析为类型错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  这是我的代码:

                  package seleniumTutorials;
                  
                  import org.openqa.selenium.WebDriver;
                  import org.openqa.selenium.chrome.ChromeDriver;
                  import org.openqa.selenium.chrome.ChromeOptions;
                  
                  public class BasicsSelenium {
                  
                  public static void main(String[] args) {
                      boolean status;
                      status=true;
                      boolean newstatus = false;
                  
                      System.out.println("My Old status was "+status);
                      System.out.println("My new status was "+newstatus);
                      System.setProperty("webdriver.chrome.driver", "F:\Samraj\MavenAutomation\Jar Files\Selenium Java\chromedriver.exe");
                      ChromeOptions chromeOptions = new ChromeOptions();
                      chromeOptions.addArguments("--start-maximized");
                      WebDriver driver = new ChromeDriver(chromeOptions);
                      driver.get("dev.findmyfare.io");
                      System.out.println(driver.getTitle());
                   }
                   }
                  

                  以下是声明 webdriver 概念后得到的错误消息:

                  Below is the error message which am getting after declaring webdriver concept:

                  Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
                  WebDriver cannot be resolved to a type   ChromeDriver cannot be resolved to a type
                      at seleniumTutorials.BasicsSelenium.main(BasicsSelenium.java:13)
                  

                  注意:我可以执行简单的java程序.

                  Note: I can able to execute simple java program.

                  我的 Eclipse 的屏幕截图

                  推荐答案

                  这个错误信息...

                  Exception in thread "main" java.lang.Error: Unresolved compilation problems:
                  WebDriver cannot be resolved to a type
                  ChromeDriver cannot be resolved to a type
                  

                  ...暗示 WebDriverChromeDriver编译时没有解决.

                  ...implies that WebDriver and ChromeDriver wasn't resolved at compiletime.

                  根据您分享的快照,您的主要问题是您的项目空间中存在多个类似的二进制文件,如下所示:

                  As per the snapshot you have shared your main issue is the presence of multiple similar binaries within your project space as follows :

                  • 您已将 selenium-server-standalone-3.11.0 作为依赖项.
                  • 此外,您还包含了来自 selenium-java-3.11.0Java 客户端 JAR 作为依赖项.
                  • You have included selenium-server-standalone-3.11.0 as a dependency.
                  • Additionally you have included the Java Client JARs from selenium-java-3.11.0 as a dependency.

                  因此,您很可能已经从一个 JAR 资源(即 selenium-server-standalone-3.11.0selenium-java-3.11.0 JAR),但 compiletime 类正试图从其他 JAR 中解析.因此您会看到 java.lang.Error: Unresolved compiler questions

                  As a result it is pretty much possible that you have resolved the WebDriver and ChromeDriver from one JAR resource (i.e. either selenium-server-standalone-3.11.0 or selenium-java-3.11.0 JARs) but compiletime the Classes are trying to get resolved from the other JAR. Hence you see java.lang.Error: Unresolved compilation problems

                  • 要么只保留 selenium-server-standalone-3.11.0 JAR 作为外部 JAR.
                  • 或者只保留 selenium-java-3.11.0 JAR 作为外部 JAR.
                  • 删除所有其他 Selenium Java 客户端 JAR.
                  • 清理你的项目工作区通过你的IDE重建你的项目只需要依赖.
                  • 进行一次系统重启.
                  • 执行你的 @Test.
                  • Either keep only selenium-server-standalone-3.11.0 JAR as an external JAR.
                  • Or keep only selenium-java-3.11.0 JARs as an external JARs.
                  • Remove all the other Selenium Java Client JARs.
                  • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.
                  • Take a System Reboot.
                  • Execute your @Test.

                  这篇关于java.lang.Error:未解决的编译问题:WebDriver/ChromeDriver 在执行 selenium 测试时无法解析为类型错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Hadoop 名称节点格式化窗口 - java.lang.UnsupportedOperationException 下一篇:加载扩展时出错无法从“C:..LocalTempscoped_dir6312_32763internal"加载

                  相关文章

                    • <bdo id='9x2tL'></bdo><ul id='9x2tL'></ul>

                    1. <i id='9x2tL'><tr id='9x2tL'><dt id='9x2tL'><q id='9x2tL'><span id='9x2tL'><b id='9x2tL'><form id='9x2tL'><ins id='9x2tL'></ins><ul id='9x2tL'></ul><sub id='9x2tL'></sub></form><legend id='9x2tL'></legend><bdo id='9x2tL'><pre id='9x2tL'><center id='9x2tL'></center></pre></bdo></b><th id='9x2tL'></th></span></q></dt></tr></i><div id='9x2tL'><tfoot id='9x2tL'></tfoot><dl id='9x2tL'><fieldset id='9x2tL'></fieldset></dl></div>
                    2. <legend id='9x2tL'><style id='9x2tL'><dir id='9x2tL'><q id='9x2tL'></q></dir></style></legend>
                    3. <tfoot id='9x2tL'></tfoot>

                    4. <small id='9x2tL'></small><noframes id='9x2tL'>