Method: Selenium::WebDriver::Chrome::Service#start_process

Defined in:
lib/selenium/webdriver/chrome/service.rb

#start_processObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

[View source]

97
98
99
100
101
102
103
# File 'lib/selenium/webdriver/chrome/service.rb', line 97

def start_process
  server_command = [@executable_path, "--port=#{@port}", *@extra_args]
  @process       = ChildProcess.build(*server_command)

  @process.io.inherit! if $DEBUG == true
  @process.start
end