Class: Perus::Pinger::ChromeNavigate

Inherits:
ChromeCommand show all
Defined in:
lib/perus/pinger/commands/chrome_navigate.rb

Instance Attribute Summary

Attributes inherited from Command

#id, #options

Instance Method Summary collapse

Methods inherited from ChromeCommand

#execute, #send_command

Methods inherited from Command

abstract!, abstract?, #cleanup, #darwin?, description, human_name, inherited, #initialize, metric!, metric?, option, options, #shell, subclasses

Constructor Details

This class inherits a constructor from Perus::Pinger::Command

Instance Method Details

#runObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/perus/pinger/commands/chrome_navigate.rb', line 6

def run
    result = false
    command = '{"id":1,"method":"Page.navigate","params":{"url":"' + options.url + '"}}'

    execute([command]) do |message|
        if message.include?('id') && message['id'] == 1
            if message.include?('result')
                result = true
            elsif message.include?('error')
                result = message['error'].to_s
            else
                result = message.to_s
            end
        end
    end

    result
end