debian-mirror-gitlab/spec/support/helpers/live_debugger.rb

26 lines
734 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'io/console'
module LiveDebugger
def live_debug
puts
puts "Current example is paused for live debugging."
2020-01-01 13:55:28 +05:30
if ENV['CHROME_HEADLESS'] =~ /^(false|no|0)$/i
puts "Switch to the Chrome window that was automatically opened to run the test in order to view current page"
else
puts "Opening #{current_url} in your default browser..."
end
2018-03-17 18:26:18 +05:30
puts "The current user credentials are: #{@current_user.username} / #{@current_user.password}" if @current_user
puts "Press any key to resume the execution of the example!!"
2020-01-01 13:55:28 +05:30
`open #{current_url}` if ENV['CHROME_HEADLESS'] !~ /^(false|no|0)$/i
2018-03-17 18:26:18 +05:30
loop until $stdin.getch
puts "Back to the example!"
end
end