_getComputedStyle

The getComputedStyle() method gets all the actual (computed) CSS property and values of the specified element.

The computed style is the style used in displaying the element, after "stylings" from multiple sources have been applied.

Style sources can include: internal style sheets, external style sheets, inherited styles, and browser default styles.

Example and Usage below:

The above getComputedStyle method will let you detect BOTH display='none' or visibility='hidden' css properties, but can do the same using isVisible function as in

IF | isVisible(byXPath('//*[@id="uv"]'))

Javascript example

navigateTo("http://demosite.appvance.com ");

click(span("k-icon k-i-close"));

var siginStatus=getComputedStyle(link("ClickToLogin"),"background-color");

log(siginStatus);