autohotkey with selenium installation help

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
awcrt9316
Posts: 61
Joined: 03 Mar 2020, 20:06

autohotkey with selenium installation help

Post by awcrt9316 » 18 May 2020, 16:22

I was watching joe gline's tutorial on how to install selenium so I can launch a web brower and automate stuff with ahk. What I have done so far was downloaded the .exe file here: https://github.com/florentbr/SeleniumBasic/releases/tag/v2.0.9.0 , saved it as a file in my program files, and downloaded the chrome webdriver, and replaced the old webdriver in the selenium basic folder with they webdriver I downloaded. Then, I double clicked and ran the vbse.exe file to install the .net libraries. after running the code below, I still get an error at line 3.

Code: Select all

#singleinstance, force

driver:= ComObjCreate("Selenium.WebDriver") ; I get error here "THE system cannot find the file specified"
driver.Start("chrome","https://google.com/")
driver.Get("/")


msgbox, here
return
does anyone know what I need to do/what I am doing wrong?

Return to “Ask for Help (v1)”