Validating if UI Elements are disabled or enabled with Attributes

Dahun Yoo·2020년 5월 14일
0

isEnable() 메소드가 있긴하나 웹사이트의 쓰인 기술에 따라 적용되지 않을 때도 있다.

➡ disable상태라도 클릭을 하게되면 활성화되기 때문

어떠한 요소의 색상이 바뀌는 것을 캐치하면 어떨까?


Style 속성의 opacity값을 체크하여 확인.
returnDate.getAttribute(“style”).contains(“”)

if(returnDate.getAttribute(“style”).contains(1)) {
    System.out.println(“enable!);
    Assert.assertTrue(true);
} else {
    System.out.println(“disable!);
    Assert.assertTrue(false);
}
profile
QA Engineer

0개의 댓글