@@ -9,24 +9,32 @@ This UDF will allow you to interact with any browser that supports the [W3C WebD
9
9
- Chrome WebDriver https://sites.google.com/a/chromium.org/chromedriver/downloads
10
10
- FireFox WebDriver https://github.com/mozilla/geckodriver/releases
11
11
12
- # Function List
13
- - _ WDStartup()
14
- - _ WDShutdown()
15
- - _ WDStatus()
16
- - _ WDCreateSession($sDesiredCapabilities='{}')
17
- - _ WDDeleteSession($sSession)
18
- - _ WDNavigate($sSession, $sURL)
19
- - _ WDAction($sSession, $sCommand)
20
- - _ WDWindow($sSession, $sCommand, $sOption)
21
- - _ WDFindElement($sSession, $sStrategy, $sSelector, $sStartElement = "", $lMultiple = False)
22
- - _ WDElementAction($sSession, $sElement, $sCommand, $sOption='')
23
- - _ WDExecuteScript($sSession, $sScript, $aArguments)
24
- - _ WDAlert($sSession, $sCommand)
25
- - _ WDGetSource($sSession)
26
- - _ WDCookies($sSession, $sCommand, $sOption = '')
27
- - _ WDTimeouts($sSession, $sTimeouts = '')
28
- - _ WDOption($sOption, $vValue = "")
29
-
30
-
31
- # Source Code
32
- You will always be able to find the latest version in the GitHub Repo https://github.com/Danp2/WebDriver
12
+ # Function List
13
+
14
+ ## Core Functions
15
+
16
+ - _ WD_CreateSession($sDesiredCapabilities='{}')
17
+ - _ WD_DeleteSession($sSession)
18
+ - _ WD_Status()
19
+ - _ WD_Timeouts($sSession, $sTimeouts = '')
20
+ - _ WD_Navigate($sSession, $sURL)
21
+ - _ WD_Action($sSession, $sCommand)
22
+ - _ WD_Window($sSession, $sCommand, $sOption = '')
23
+ - _ WD_FindElement($sSession, $sStrategy, $sSelector, $sStartElement = "", $lMultiple = False)
24
+ - _ WD_ElementAction($sSession, $sElement, $sCommand, $sOption='')
25
+ - _ WD_ExecuteScript($sSession, $sScript, $sArguments="[ ] ")
26
+ - _ WD_Alert($sSession, $sCommand, $sOption = '')
27
+ - _ WD_GetSource($sSession)
28
+ - _ WD_Cookies($sSession, $sCommand, $sOption = '')
29
+ - _ WD_Option($sOption, $vValue = "")
30
+ - _ WD_Startup()
31
+ - _ WD_Shutdown()
32
+
33
+ ## Helper Functions
34
+
35
+ - _ WD_NewTab($sSession, $lSwitch = True)
36
+ - _ WD_Attach($sSession, $sString, $sMode = 'title')
37
+ - _ WD_LinkClickByText($sSession, $sText, $lPartial = True)
38
+
39
+ # Source Code
40
+ You will always be able to find the latest version in the GitHub Repo https://github.com/Danp2/WebDriver
0 commit comments