class Playwright::Page

def visible?(selector, strict: nil, timeout: nil)

Returns whether the element is [visible](../actionability.md#visible). `selector` that does not match any elements is considered not visible.
def visible?(selector, strict: nil, timeout: nil)
  wrap_impl(@impl.visible?(unwrap_impl(selector), strict: unwrap_impl(strict), timeout: unwrap_impl(timeout)))
end