DefaultSelenium IsVisible Method WebDriver
Determines if the specified element is visible. An element can be rendered invisible by setting the CSS "visibility" property to "hidden", or the "display" property to "none", either for the element itself or one if its ancestors. This method will fail if the element is not present.

Namespace: Selenium
Assembly: ThoughtWorks.Selenium.Core (in ThoughtWorks.Selenium.Core.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax

public bool IsVisible(
	string locator
)

Return Value

true if the specified element is visible, false otherwise

Implements

ISelenium IsVisible(String)
See Also