Connect to geckodriver with selenium js
问题 I'm not an expert of Selenium, so I may miss something here. One of the software in the corp starts a firefox with Geckodriver. I would like to connect / attach to this browser from my JavaScript code. I know the port where the Webserver starts and the sessions identifier. I try to connect from JS: const webdriver = require('selenium-webdriver') void async function() { let driver = await new webdriver.Builder().forBrowser('firefox').usingServer('http://localhost:55849/').build(); await driver