Page 1 of 1

Verify, that element is visible

Posted: Thu Mar 20, 2014 4:26 pm
by rholdberh
Hi,
i want to create, such verification:

if (element is visible) {
click on it
}
else{ nothing}

how to verify in construction if-then that element is visible?
Regards

Re: Verify, that element is visible

Posted: Fri Mar 21, 2014 10:03 am
by jpa

Code: Select all

if (element.Visible)
{

}