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

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

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

          <bdo id='Aln7d'></bdo><ul id='Aln7d'></ul>
      2. 如何单击量角器中的隐藏元素?

        时间:2023-06-15
          <bdo id='BH9Tp'></bdo><ul id='BH9Tp'></ul>
            <legend id='BH9Tp'><style id='BH9Tp'><dir id='BH9Tp'><q id='BH9Tp'></q></dir></style></legend>

            • <tfoot id='BH9Tp'></tfoot>

              • <small id='BH9Tp'></small><noframes id='BH9Tp'>

              • <i id='BH9Tp'><tr id='BH9Tp'><dt id='BH9Tp'><q id='BH9Tp'><span id='BH9Tp'><b id='BH9Tp'><form id='BH9Tp'><ins id='BH9Tp'></ins><ul id='BH9Tp'></ul><sub id='BH9Tp'></sub></form><legend id='BH9Tp'></legend><bdo id='BH9Tp'><pre id='BH9Tp'><center id='BH9Tp'></center></pre></bdo></b><th id='BH9Tp'></th></span></q></dt></tr></i><div id='BH9Tp'><tfoot id='BH9Tp'></tfoot><dl id='BH9Tp'><fieldset id='BH9Tp'></fieldset></dl></div>
                  <tbody id='BH9Tp'></tbody>
                  本文介绍了如何单击量角器中的隐藏元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个元素,只有当我将鼠标悬停在它上面时才可见.

                  I have an element which is visible only when I hover over it.

                  我编写了以下代码来悬停在面板上,以便元素可见.

                  I've written following code to hove over the panel so that the element is visible.

                  ptor.actions().
                              mouseMove(ptor.findElement(protractor.By.xpath('//*[@id="productapp"]/div/div/div[2]/div/div/div/div[2]/div/div/div/div[4]/table/thead/tr/th[2]'))).
                              perform();
                          ptor.element.all(by.tagName('i')).then(function(elm){
                              elm[0].click();
                          });
                  

                  现在我试图点击它,但它显示 -ElementNotVisibleError:元素不可见量角器错误.

                  Now I tried to click on it, but it says - ElementNotVisibleError: element not visible error in protractor.

                  基本情况是,我想将鼠标悬停在面板上,然后单击隐藏的元素,因为该元素在悬停之前是不可见的.

                  Basic scenario is, I want to hover over a panel and then click on the hidden element, because the element is not visible until it is hovered over.

                  推荐答案

                  以下代码对我有用.

                    ptor.actions().
                      mouseMove(ptor.findElement(protractor.By.xpath('//*@id="productapp"]/div/div/div[2]/div/div/div/div[2]/div/div/div/div[4]/table/thead/tr/th[2]'))).perform();
                  
                     ptor.element.all(by.css('i.ng-scope.tea-ic-sorting')).then(function(elm){
                         elm[0].click();
                      });
                  

                  这篇关于如何单击量角器中的隐藏元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:获取当前选中的文本 下一篇:如何测试阻力&amp;AngularJS e2e 测试中的删除功能

                  相关文章

                  1. <legend id='xWVv2'><style id='xWVv2'><dir id='xWVv2'><q id='xWVv2'></q></dir></style></legend>

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

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

                      <tfoot id='xWVv2'></tfoot>

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