# File common/src/rb/lib/selenium/webdriver/child_process.rb, line 236 def assert_started raise Error::WebDriverError, "process not started" unless @process end
# File common/src/rb/lib/selenium/webdriver/child_process.rb, line 229 def exit_value assert_started return unless @process.HasExited @process.ExitCode end
# File common/src/rb/lib/selenium/webdriver/child_process.rb, line 213 def kill assert_started @process.Kill end
# File common/src/rb/lib/selenium/webdriver/child_process.rb, line 224 def pid assert_started @process.Id end
# File common/src/rb/lib/selenium/webdriver/child_process.rb, line 201 def start args = @args.dup @process = System::Diagnostics::Process.new @process.StartInfo.UseShellExecute = true @process.StartInfo.FileName = args.shift @process.StartInfo.Arguments = args.join ' ' @process.start self end
Generated with the Darkfish Rdoc Generator 2.