Class: Taf::TestSteps::Handlers::BrowserQuit

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

Overview

Browser Quit function.

Instance Method Summary collapse

Methods inherited from Base

#initialize, #login_check, #login_process, perform, #portal_mem_word, 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/browser_quit.rb', line 10

def perform
  Taf::Browser.b.quit
  Taf::MyLog.log.info('Browser has closed successfully')
  true
rescue StandardError
  Taf::MyLog.log.warn('Browser has failed to close')
  false
end