如何单击量角器中的隐藏元素?

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

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/di‌​v[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();
    });

相关文章