Module: Fluent::Platforms::WatirWebDriver::CheckBox

Defined in:
lib/fluent/platform_watir/platform_web_elements/checkbox.rb

Instance Method Summary collapse

Instance Method Details

#checkObject



10
11
12
# File 'lib/fluent/platform_watir/platform_web_elements/checkbox.rb', line 10

def check
  web_element.set
end

#checked?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/fluent/platform_watir/platform_web_elements/checkbox.rb', line 6

def checked?
  web_element.set?
end

#uncheckObject



14
15
16
# File 'lib/fluent/platform_watir/platform_web_elements/checkbox.rb', line 14

def uncheck
  web_element.clear
end