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

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

      • <bdo id='1nqGP'></bdo><ul id='1nqGP'></ul>

      <small id='1nqGP'></small><noframes id='1nqGP'>

      <tfoot id='1nqGP'></tfoot>
      <legend id='1nqGP'><style id='1nqGP'><dir id='1nqGP'><q id='1nqGP'></q></dir></style></legend>

      1. 如何通過 selenium-webdriver 和 Java 使用 java 鼠標懸停

        How to mouse hover using java through selenium-webdriver and Java(如何通過 selenium-webdriver 和 Java 使用 java 鼠標懸停)

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

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

                <tbody id='yYouc'></tbody>

                  <tfoot id='yYouc'></tfoot>

                  <legend id='yYouc'><style id='yYouc'><dir id='yYouc'><q id='yYouc'></q></dir></style></legend>

                  <i id='yYouc'><tr id='yYouc'><dt id='yYouc'><q id='yYouc'><span id='yYouc'><b id='yYouc'><form id='yYouc'><ins id='yYouc'></ins><ul id='yYouc'></ul><sub id='yYouc'></sub></form><legend id='yYouc'></legend><bdo id='yYouc'><pre id='yYouc'><center id='yYouc'></center></pre></bdo></b><th id='yYouc'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='yYouc'><tfoot id='yYouc'></tfoot><dl id='yYouc'><fieldset id='yYouc'></fieldset></dl></div>
                  本文介紹了如何通過 selenium-webdriver 和 Java 使用 java 鼠標懸停的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  在嘗試自動化門戶 http://demo.nopcommerce.com/ 時,我無法選擇鼠標懸停在電子"菜單上,然后選擇相機和照片"子菜單.使用下面的腳本.

                  While trying to automate the portal http://demo.nopcommerce.com/, am not able to select mouse hover over "Electornics" menu and select "Camera & Photo" sub menu. Used the below script for the same.

                  WebElement electronic_Pdts = driver.findElement(By.xpath("http://*[@class='title']//*[@title='Show products in category Electronics']"));
                  action.moveToElement(electronic_Pdts).build().perform();
                  driver.findElement(By.xpath("http://*[@src='http://demo.nopcommerce.com/images/thumbs/0000006_camera-photo_450.jpeg']")).click();
                  

                  推薦答案

                  鼠標懸停"Electornics"strong> 菜單并選擇 "Camera & Photo" 您可以使用以下代碼塊:

                  To Mouse Hover over "Electornics" menu and select "Camera & Photo" you can use the following code block :

                  driver.get("http://demo.nopcommerce.com/");
                  Actions act = new Actions(driver);
                  WebDriverWait wait = new WebDriverWait(driver, 10);
                  WebElement electronics = wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("http://li/a[@href='/electronics']")));
                  act.moveToElement(electronics).perform();
                  WebElement camera_n_photo = driver.findElement(By.xpath("http://li/a[@href='/electronics']//following::ul/li/a"));
                  camera_n_photo.click();
                  System.out.println("Camera & photo Clicked.");
                  

                  這篇關于如何通過 selenium-webdriver 和 Java 使用 java 鼠標懸停的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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?)

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

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

                          • 主站蜘蛛池模板: 91人人爽| 日韩精品 电影一区 亚洲 | 国产成人精品免费视频大全最热 | 在线观看成人精品 | 亚洲国产电影 | 在线国产99 | 日韩成人免费视频 | 成人国产精品久久 | 中文字幕第一页在线 | 综合激情av | 九九九精品视频 | 久久在线精品 | 免费在线播放黄色 | 欧美一区2区三区4区公司 | 亚洲精品久久国产高清情趣图文 | 日韩一级一区 | 正在播放一区二区 | 色男人天堂av | 一级黄色在线 | 成人欧美一区二区三区在线观看 | 国产精品美女久久久久久免费 | 精品久久久久久久 | 91精品国产乱码麻豆白嫩 | 午夜精品一区 | 亚洲精品视频免费看 | 日韩欧美大片在线观看 | 天天插天天射天天干 | 亚洲高清视频在线观看 | 欧美极品在线观看 | 日日骚网 | 波多野结衣二区 | 91久久久久久久久久久久久 | 亚洲欧美视频一区 | 国产一区二区三区四区在线观看 | 午夜三级在线观看 | 2022精品国偷自产免费观看 | 日韩精品免费在线观看 | 欧美99| 亚洲一区二区久久 | 久久久久久久久久久久久91 | 青草青草久热精品视频在线观看 |