How to click on hidden element in protractor?(如何单击量角器中的隐藏元素?)
问题描述
我有一个元素,只有当我将鼠标悬停在它上面时才可见.
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.
现在我试图点击它,但它显示 -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.
推荐答案
以下代码对我有用.
这篇关于如何单击量角器中的隐藏元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!