久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

      • <bdo id='irFss'></bdo><ul id='irFss'></ul>
    1. <legend id='irFss'><style id='irFss'><dir id='irFss'><q id='irFss'></q></dir></style></legend>
      <tfoot id='irFss'></tfoot>

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

      1. <i id='irFss'><tr id='irFss'><dt id='irFss'><q id='irFss'><span id='irFss'><b id='irFss'><form id='irFss'><ins id='irFss'></ins><ul id='irFss'></ul><sub id='irFss'></sub></form><legend id='irFss'></legend><bdo id='irFss'><pre id='irFss'><center id='irFss'></center></pre></bdo></b><th id='irFss'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='irFss'><tfoot id='irFss'></tfoot><dl id='irFss'><fieldset id='irFss'></fieldset></dl></div>

        “java.lang.module.InvalidModuleDescriptorException:提供程序

        quot;java.lang.module.InvalidModuleDescriptorException: Provider class org.apache.bsf.BSFManager not in modulequot; error with ChromeDriver Selenium(“java.lang.module.InvalidModuleDescriptorException:提供程序類 org.apache.bsf.BSFManag

          <bdo id='S2I8S'></bdo><ul id='S2I8S'></ul>

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

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

              <legend id='S2I8S'><style id='S2I8S'><dir id='S2I8S'><q id='S2I8S'></q></dir></style></legend>
                    <tbody id='S2I8S'></tbody>
                  本文介紹了“java.lang.module.InvalidModuleDescriptorException:提供程序類 org.apache.bsf.BSFManager 不在模塊中"ChromeDriver Selenium 出錯的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在使用帶有 jdk13 和 selenium 3.0.1 .jar 文件的 eclipse 09-2019.

                  I am using eclipse 09-2019 with jdk13 and selenium 3.0.1 .jar file.

                  我的代碼是:

                  package package1;
                  import org.openqa.selenium.WebDriver;
                  import org.openqa.selenium.chrome.ChromeDriver;
                  import org.openqa.selenium.firefox.FirefoxDriver;
                  
                  public class Script1
                  {
                        public static void main(String[] args)
                        {
                            System.out.println("Hii");
                            System.setProperty("Webdriver.chrome.driver","E:\Selenium\chromedriver.exe");
                            WebDriver driver=new ChromeDriver();
                            driver.get("http://www.google.com");
                        }
                  }
                  

                  錯誤:

                  java.lang.module.InvalidModuleDescriptorException: Provider class org.apache.bsf.BSFManager not in module
                  

                  推薦答案

                  InvalidModuleDescriptorException

                  InvalidModuleDescriptorException 被拋出讀取模塊描述符時發現模塊描述符格式錯誤或無法解釋為模塊描述符.

                  InvalidModuleDescriptorException

                  InvalidModuleDescriptorException is thrown when reading a module descriptor and the module descriptor is found to be malformed or otherwise cannot be interpreted as a module descriptor.

                  InvalidModuleDescriptorException 可以在以下任一情況下引發:

                  InvalidModuleDescriptorException can be raised in either of the following scenarios:

                  1. Java 項目的問題.
                  2. Java 項目中的 Java 包存在問題.
                  3. Java 包中的 Java 類存在問題.

                  但是,根據 Does Selenium v??3.141 支持 Java 13? 似乎是 Selenium 仍然不支持 java-13.

                  However, as per the discussion in Does Selenium v3.141 support Java 13? it seems the latest version of Selenium still doesn't supports java-13.

                  戰略解決方案是安裝最新版本的 JDK 8u222 并執行 @Tests

                  The strategic solution will be to install the latest version of JDK 8u222 and execute the @Tests

                  此外,您還需要在 System.setProperty() 行中將大寫字母 W 替換為小寫字母 w.因此,實際上,您需要替換:

                  Additionally, you also need to replace uppercap W with the lowercap w in the System.setProperty() line. So, effectively, you need to replace:

                  System.setProperty("Webdriver.chrome.driver","E:\Selenium\chromedriver.exe");
                  

                  System.setProperty("webdriver.chrome.driver","E:\Selenium\chromedriver.exe");
                  

                  <小時>

                  其他注意事項

                  此外,請確保:

                  • Selenium 已升級到當前級別版本 3.141.59.
                  • ChromeDriver 已更新為當前 ChromeDriver v79.0.3945.36 級別.
                  • Chrome 已更新至當前 Chrome 版本 79.0 級別.(根據 ChromeDriver v79.0 發行說明)
                  • Selenium is upgraded to current levels Version 3.141.59.
                  • ChromeDriver is updated to current ChromeDriver v79.0.3945.36 level.
                  • Chrome is updated to current Chrome Version 79.0 level. (as per ChromeDriver v79.0 release notes)

                  這篇關于“java.lang.module.InvalidModuleDescriptorException:提供程序類 org.apache.bsf.BSFManager 不在模塊中"ChromeDriver Selenium 出錯的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How can I detect integer overflow on 32 bits int?(如何檢測 32 位 int 上的整數溢出?)
                  Local variables before return statements, does it matter?(return 語句之前的局部變量,這有關系嗎?)
                  How to convert Integer to int?(如何將整數轉換為整數?)
                  How do I create an int array with randomly shuffled numbers in a given range(如何在給定范圍內創建一個隨機打亂數字的 int 數組)
                  Inconsistent behavior on java#39;s ==(java的行為不一致==)
                  Why is Java able to store 0xff000000 as an int?(為什么 Java 能夠將 0xff000000 存儲為 int?)

                  1. <small id='giTpq'></small><noframes id='giTpq'>

                      <bdo id='giTpq'></bdo><ul id='giTpq'></ul>
                          <tbody id='giTpq'></tbody>
                        <legend id='giTpq'><style id='giTpq'><dir id='giTpq'><q id='giTpq'></q></dir></style></legend>
                        <i id='giTpq'><tr id='giTpq'><dt id='giTpq'><q id='giTpq'><span id='giTpq'><b id='giTpq'><form id='giTpq'><ins id='giTpq'></ins><ul id='giTpq'></ul><sub id='giTpq'></sub></form><legend id='giTpq'></legend><bdo id='giTpq'><pre id='giTpq'><center id='giTpq'></center></pre></bdo></b><th id='giTpq'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='giTpq'><tfoot id='giTpq'></tfoot><dl id='giTpq'><fieldset id='giTpq'></fieldset></dl></div>
                          1. <tfoot id='giTpq'></tfoot>

                            主站蜘蛛池模板: 国产一级片免费看 | av在线播放网站 | 成人福利网站 | 久久国产精品久久久久久久久久 | 国产色爽 | 美女天天操| 国产精品国产三级国产aⅴ入口 | 久久亚洲欧美日韩精品专区 | 精品久久一区二区 | 欧美激情精品久久久久久 | 久久久123 | 福利片在线观看 | av性色全交蜜桃成熟时 | 欧美激情视频一区二区三区在线播放 | 久草福利 | 精品在线一区 | 日韩免费网站 | 天天干天天操 | 国产精品视频网 | 91精品国产综合久久久久久丝袜 | 亚洲中午字幕 | 日本a∨视频 | 欧美综合国产精品久久丁香 | 亚洲一二三区在线观看 | 天堂在线中文 | 日韩在线欧美 | 国产精品特级毛片一区二区三区 | 免费看a | 国产高清在线精品一区二区三区 | 欧美精品第三页 | 欧美黄色大片在线观看 | 91社区在线观看播放 | 亚洲精品乱 | 国产成人99久久亚洲综合精品 | 麻豆av在线 | 国产视频久久 | 亚洲一区二区三区免费在线观看 | 五月天综合影院 | 国产成人福利 | 亚洲精品乱码久久久久v最新版 | 欧美www在线 |