我在以下 id 元素上使用 selenium getAttribute("style") 方法:-
<div id="ntsDiv_1" style="width: 250px; text-align: left; white-space: normal; top: 1090px; left: 131px; visibility: hidden;" class="mlt-pop-container">
但 API 只返回一半的值。它正在返回width: 250px; text-align: left; white-space: normal;
并且样式的剩余部分被剪裁。
我正在尝试提取可见性的值,但该方法没有返回样式的完整值。因此,我无法确定能见度的正确值。
我执行了System.out.println("Style is:- "+super.getElement(NEXTAG_STORES_DIV).getAttribute("style"));
NEXTAG_STORES_DIV 对应id元素的xpath,super.getElement
通过xpath提取元素
请帮帮我!!