久久久久久久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 出錯的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  我正在使用帶有 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 被拋出讀取模塊描述符時發(fā)現(xiàn)模塊描述符格式錯誤或無法解釋為模塊描述符.

                  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 可以在以下任一情況下引發(fā):

                  InvalidModuleDescriptorException can be raised in either of the following scenarios:

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

                  但是,根據(jù) 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.

                  戰(zhàn)略解決方案是安裝最新版本的 JDK 8u222 并執(zhí)行 @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 級別.(根據(jù) ChromeDriver v79.0 發(fā)行說明)
                  • 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)

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

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

                  相關(guān)文檔推薦

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

                            主站蜘蛛池模板: 免费成人高清 | 在线观看中文字幕 | 成人性视频免费网站 | 国产小视频在线观看 | 在线观看中文字幕 | 欧美激情一区 | 超碰在线影院 | 国产亚洲第一页 | 日本午夜在线视频 | 日韩欧美在线视频一区 | 亚洲一区二区三区在线 | 四虎影视一区二区 | 国产一区二区精品在线观看 | 国产精品久久久久久久免费大片 | 在线视频一区二区三区 | 亚洲高清在线免费观看 | 草草网 | 亚洲精品中文字幕在线观看 | 色偷偷888欧美精品久久久 | 在线免费观看黄a | 日朝毛片 | av香港经典三级级 在线 | 久久久女女女女999久久 | 在线黄 | 天天干天天爱天天 | 久久这里只有精品首页 | 亚洲视频免费播放 | 农夫在线精品视频免费观看 | 国产成人a亚洲精品 | 97精品一区二区 | 夜夜爆操| av在线播放免费 | 欧美色性| 特级黄一级播放 | 视频一区二区在线 | 精品国产aⅴ| 久久毛片 | 成人在线欧美 | 亚洲欧美国产视频 | 日韩欧美国产成人一区二区 | 久久99久久久久 |