This command is useful to check if an element is visible on a webpage.
Returns true if the element is visible and false if it is not.

Goal: To check if a control is visible.
Parameters:
ControlName: the name of the control as defined in the KB.
Example of use:
&driver.IsControlVisible("Price")
Also, can be executed using different locators (id, name, CSS, XPath, or LinkText) as follows:

Goal: To check if an element it’s visible using its ID.
Parameters:
ID: the HTML element ID .
Example of use:
&driver.IsElementVisibleByID("InvoiceTotal")

Goal: To check if an element it’s visible using its 'name' attribute.
Parameters:
Name: the value of the NAME attribute of the element.
Example of use:
&driver.IsElementVisibleByName("total")

Goal: To check if an element it’s visible using its CSS selector.
Parameters:
CSS: the CSS selector to the element.
Example of use:
&driver.IsElementVisibleByCSS("#vVAR1")

Goal: To check if an element it’s visible using an XPath selector.
Parameters:
XPath: the XPath selector to the element.
Example of use:
&driver.IsElementVisibleByXPath("//textarea[@id='vVAR1']")

Goal: To check if an element it’s visible using a LinkText selector.
Parameters:
LinkText: the link’s text of the element.
Example of use:
&driver.IsElementVisibleByLinkText("Edit")
|