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

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

        <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 id='yYouc'><tfoot id='yYouc'></tfoot><dl id='yYouc'><fieldset id='yYouc'></fieldset></dl></div>

        如何通过 selenium-webdriver 和 Java 使用 java 鼠标悬停

        时间:2023-09-28
          <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 id='1nqGP'><tfoot id='1nqGP'></tfoot><dl id='1nqGP'><fieldset id='1nqGP'></fieldset></dl></div>
            <tbody id='1nqGP'></tbody>

              • <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>

                  本文介绍了如何通过 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("//*[@class='title']//*[@title='Show products in category Electronics']"));
                  action.moveToElement(electronic_Pdts).build().perform();
                  driver.findElement(By.xpath("//*[@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("//li/a[@href='/electronics']")));
                  act.moveToElement(electronics).perform();
                  WebElement camera_n_photo = driver.findElement(By.xpath("//li/a[@href='/electronics']//following::ul/li/a"));
                  camera_n_photo.click();
                  System.out.println("Camera & photo Clicked.");
                  

                  这篇关于如何通过 selenium-webdriver 和 Java 使用 java 鼠标悬停的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:运行 selenium 远程驱动程序时出现带有 NativeConst 下一篇:从渲染器接收消息超时

                  相关文章

                  最新文章

                    <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 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>
                  2. <tfoot id='IlsDu'></tfoot>