Class: AcknowledgementOfApplication
- Inherits:
-
Object
- Object
- AcknowledgementOfApplication
- Defined in:
- lib/acknowledgement_of_application.rb
Instance Method Summary collapse
- #check_on_holidays ⇒ Object
-
#initialize(table_row) ⇒ AcknowledgementOfApplication
constructor
A new instance of AcknowledgementOfApplication.
Constructor Details
#initialize(table_row) ⇒ AcknowledgementOfApplication
Returns a new instance of AcknowledgementOfApplication.
4 5 6 |
# File 'lib/acknowledgement_of_application.rb', line 4 def initialize(table_row) @table_row = table_row end |
Instance Method Details
#check_on_holidays ⇒ Object
8 9 10 |
# File 'lib/acknowledgement_of_application.rb', line 8 def check_on_holidays @table_row.find_element(:class, 'monthly-checkbox').click if past_day? && unapplied? end |