Verify, that element is visible

Technology specific object identification, supported applications, web technologies, and 3rd party controls.
rholdberh
Posts: 27
Joined: Mon Jan 13, 2014 3:45 pm

Verify, that element is visible

Post by rholdberh » Thu Mar 20, 2014 4:26 pm

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

jpa
Posts: 3
Joined: Mon Mar 17, 2014 11:13 am

Re: Verify, that element is visible

Post by jpa » Fri Mar 21, 2014 10:03 am

Code: Select all

if (element.Visible)
{

}