added ability to save statistic for selenium mouse clicks

This commit is contained in:
2023-09-17 14:25:54 -04:00
parent 1c000184df
commit ca7145fa82

View File

@@ -2,6 +2,7 @@
;------------------------------------------------
; Selenium Related Functions
global MouseClicksSaved
ShowSeleniumErrorMsgbox(){
@@ -16,7 +17,7 @@ ShowSeleniumErrorMsgbox(){
OnMessage(0x44, "")
IfMsgBox Yes, {
; Open Instructions Gitea page
; Open Instructions Gitea page
if(InStr(A_ScriptName, "Video"))
URL = https://git.freedomainplaylists.com/yuriy/Freedomain-Video-Uploader#installation
@@ -670,6 +671,7 @@ Selenium_LoopToClickID(IDName,NumOfLoops:=1,SleepLength:=1000){
sleep, %SleepLength%
Continue
}
MouseClicksSaved += 1
Return
}
}
@@ -685,6 +687,7 @@ Selenium_LoopToClickName(ElementName,NumOfLoops:=1,SleepLength:=1000){
sleep, %SleepLength%
Continue
}
MouseClicksSaved += 1
Return
}
}
@@ -744,7 +747,8 @@ Selenium_LoopToClickXpath(Xpath,NumOfLoops:=1,SleepLength:=1000){
sleep, %SleepLength%
Continue
}
Return
MouseClicksSaved += 1
Return
}
}
@@ -769,7 +773,8 @@ Selenium_LoopToClickXpathAndWaitForOpenWindow(Xpath,NumOfLoops:=1,SleepLength:=1
sleep, %SleepLength%
Continue
}
Return
MouseClicksSaved += 1
Return
}
}