Class: Taf::TestSteps::Handlers::CheckScreendata

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

Overview

Check Screendata text 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
# File 'lib/taf/test_steps/handlers/base/check_screendata.rb', line 10

def perform
  Taf::Browser.b.page_source.include? @value
  Taf::MyLog.log.info("Text found: #{@value}")
  true
rescue StandardError
  Taf::MyLog.log.warn("Text not found: #{@value}")
  false
end