isVisible
Returns whether the element is visible.Does not wait for element to appear. For assertions, prefer expect(locator).toBeVisible().
Return value
isHidden
Returns whether the element is hidden.Opposite of isVisible(). For assertions, prefer expect(locator).toBeHidden().
Return value
isEnabled
Returns whether the element is enabled.For assertions, prefer expect(locator).toBeEnabled().
Return value
isDisabled
Returns whether the element is disabled.For assertions, prefer expect(locator).toBeDisabled().
Return value
isChecked
Returns whether a checkbox or radio is checked.For assertions, prefer expect(locator).toBeChecked().
Return value
isEditable
Returns whether the element is editable.For assertions, prefer expect(locator).toBeEditable().
Return value

