Does anyone know how to get the process id of the browser launched by Selenium WebDriver from the Ruby script that runs the WebDriver?

link|improve this question

70% accept rate
feedback

1 Answer

require "selenium-webdriver"

driver = Selenium::WebDriver.for :firefox

bridge = driver.instance_variable_get(:@bridge)
launcher = bridge.instance_variable_get(:@launcher)
binary = launcher.instance_variable_get(:@binary)
process = binary.instance_variable_get(:@process)
process.pid
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.