Class: Taf::TestSteps::Handlers::WriteBoxdata

Inherits:
Base
  • Object
show all
Defined in:
lib/taf/test_steps/handlers/base/write_box_data.rb

Overview

Write box data function.

Instance Method Summary collapse

Methods inherited from Base

#initialize, #login_check, #login_process, perform, register, #url_check

Constructor Details

This class inherits a constructor from Taf::TestSteps::Handlers::Base

Instance Method Details

#performObject



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/taf/test_steps/handlers/base/write_box_data.rb', line 10

def perform
  txt = @value2
  txt = ENV[txt.to_s] if ENV[txt.to_s]
  Taf::Browser.b.find_element("#{@locate}": @value).displayed?
  Taf::Browser.b.find_element("#{@locate}": @value).send_keys txt
  Taf::MyLog.log.info("Textbox: #{@value} has correct value: #{txt}")
  true
rescue StandardError
  Taf::MyLog.log.warn("Textbox: #{@value} does not exist")
  false
end