Sha256: 9646628f273fb0d625d80f61f8f6399baf07d6c80d8d24c5d7c8784975337593
Contents?: true
Size: 482 Bytes
Versions: 2
Compression:
Stored size: 482 Bytes
Contents
module PageObject module Platforms module Selenium module RadioButton # # select the radiobutton # def select element.click unless selected? end # # clear the radiobutton # def clear element.click if selected? end # # return if it is selected # def selected? element.selected? end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
page-object-0.2.5 | lib/page-object/platforms/selenium/radio_button.rb |
page-object-0.2.4 | lib/page-object/platforms/selenium/radio_button.rb |