* Allowing true, false, or :all for all selectors with :disabled option
* Adding skip_if option to Filter to skip the filter (i.e. return true) if this value is passed
This enables assertions on the presence of disabled buttons by doing:
assert has_button?('Button text', :disabled => true)
in a similar way to:
find_field("Disabled Checkbox", :disabled => true)