class Playwright::Page

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

Returns whether the element is disabled, the opposite of [enabled](../actionability.md#enabled).
def disabled?(selector, strict: nil, timeout: nil)
  wrap_impl(@impl.disabled?(unwrap_impl(selector), strict: unwrap_impl(strict), timeout: unwrap_impl(timeout)))
end