module Capybara::Node::Matchers
def has_no_checked_field?(locator = nil, **options, &optional_filter_block)
-
(Boolean)- Whether it doesn't exist
Parameters:
-
locator(String) -- The label, name or id of a checked field
def has_no_checked_field?(locator = nil, **options, &optional_filter_block) has_no_selector?(:field, locator, options.merge(checked: true), &optional_filter_block) end