diff --git a/Selenium-Functions.ahk b/Selenium-Functions.ahk index fa8ff2c..faa681d 100644 --- a/Selenium-Functions.ahk +++ b/Selenium-Functions.ahk @@ -39,14 +39,14 @@ ShowSeleniumErrorMsgbox(){ ; -------------------------------Tab Navigation & Activation------------------------------- CheckSeleniumDriver(){ - try Driver := SChrome_Get("", ChromeProfile := "") ; open new tab page with with specified profile + try Driver := ConnectToChrome("", ChromeProfile := "") ; open new tab page with with specified profile catch e { ShowSeleniumErrorMsgbox() ; Message = Failed to Make Connection to Chrome. Check for Any Open Dialogue Boxes or out of date ChromeDriver ; SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging") Return "Failed" } - ; Driver := SChrome_Get("https://www.bitchute.com/", ChromeProfile) ; open new tab page with with specified profile + ; Driver := ConnectToChrome("https://www.bitchute.com/", ChromeProfile) ; open new tab page with with specified profile ; driver.executeScript("return document.readyState").equals("complete") ; wait until page loads completely before proceeding try driver.executeScript("return document.readyState").equals("complete") ; wait until page loads completely before proceeding catch e { @@ -483,8 +483,8 @@ SaveDriverURL(){ ; save the url of the result page. That way if a tab is not fou } -; -------------------------------SChrome_Get------------------------------- -SChrome_Get(URL := "", Profile := "Profile 1", IP_Port := "127.0.0.1:9222"){ +; -------------------------------ConnectToChrome------------------------------- +ConnectToChrome(URL := "", Profile := "Profile 1", IP_Port := "127.0.0.1:9222"){ Message = Trying to Connect to Chrome SaveOrPostProgress(Message:=Message,PostType:="Tooltip") @@ -517,6 +517,7 @@ SChrome_Get(URL := "", Profile := "Profile 1", IP_Port := "127.0.0.1:9222"){ } } + if(ChromeFilepath = ""){ GetChromeFilepath() } @@ -536,7 +537,7 @@ SChrome_Get(URL := "", Profile := "Profile 1", IP_Port := "127.0.0.1:9222"){ return Driver } - ; -------------------------------/SChrome_Get------------------------------- + ; -------------------------------/ConnectToChrome------------------------------- /* */