@@ -68,51 +68,52 @@ This au3WebDriver UDF (project) allows to interact with any browser that support
68
68
<summary ><i >Helper Functions</i ></summary >
69
69
<p >
70
70
71
- | Name | Description |
72
- | :--- | :--- |
73
- | _ WD_NewTab | Create new tab in current browser session. |
74
- | _ WD_Attach | Attach to existing browser tab. |
75
- | _ WD_LinkClickByText | Simulate a mouse click on a link with text matching the provided string. |
76
- | _ WD_WaitElement | Wait for an element in the current tab before returning. |
77
- | _ WD_GetMouseElement | Retrieves reference to element below mouse pointer. |
78
- | _ WD_GetElementFromPoint | Retrieves reference to element at specified point. |
79
- | _ WD_LastHTTPResult | Return the result of the last WinHTTP request. |
80
- | _ WD_LastHTTPResponse | Return the response of the last WinHTTP request. |
81
- | _ WD_GetFrameCount | Returns the number of frames/iframes in the current document context. |
82
- | _ WD_IsWindowTop | Returns a boolean of the session being at the top level, or in a frame(s). |
83
- | _ WD_FrameEnter | Enter the specified frame. |
84
- | _ WD_FrameLeave | Leave the current frame, to its parent. |
85
- | _ WD_HighlightElement | Highlights the specified element. |
86
- | _ WD_HighlightElements | Highlights the specified elements. |
87
- | _ WD_LoadWait | Wait for a browser page load to complete before returning. |
88
- | _ WD_Screenshot | Takes a screenshot of the Window or Element. |
89
- | _ WD_PrintToPDF | Print the current tab in paginated PDF format. |
90
- | _ WD_jQuerify | Inject jQuery library into current session. |
91
- | _ WD_ElementOptionSelect | Find and click on an option from a Select element. |
92
- | _ WD_ElementSelectAction | Perform action on designated Select element. |
93
- | _ WD_ElementStyle | Set/Get element style property. |
94
- | _ WD_ConsoleVisible | Control visibility of the webdriver console app. |
95
- | _ WD_GetShadowRoot | Retrieves the shadow root of an element. |
96
- | _ WD_SelectFiles | Select files for uploading to a website. |
97
- | _ WD_IsLatestRelease | Compares local UDF version to latest release on Github. |
98
- | _ WD_UpdateDriver | Replace web driver with newer version, if available. |
99
- | _ WD_GetBrowserVersion | Get version number of specified browser. |
100
- | _ WD_GetBrowserPath | Retrieve path to browser executable from registry. |
101
- | _ WD_GetWebDriverVersion | Get version number of specifed webdriver. |
102
- | _ WD_DownloadFile | Download file and save to disk. |
103
- | _ WD_SetTimeouts | User friendly function to set webdriver session timeouts. |
104
- | _ WD_GetElementById | Locate element by id. |
105
- | _ WD_GetElementByName | Locate element by name. |
106
- | _ WD_SetElementValue | Set value of designated element. |
107
- | _ WD_ElementActionEx | Perform advanced action on designated element. |
108
- | _ WD_GetTable | Return all elements of a table. |
109
- | _ WD_IsFullScreen | Return a boolean indicating if the session is in full screen mode. |
110
- | _ WD_GetDevicePixelRatio | Returns an integer indicating the DevicePixelRatio. |
111
- | _ WD_CheckContext | Check if browser context is still valid. |
112
- | _ WD_JsonActionKey | Formats keyboard "action" strings for use in _ WD_Action |
113
- | _ WD_JsonActionPointer | Formats pointer "action" strings for use in _ WD_Action |
114
- | _ WD_JsonActionPause | Formats pause "action" strings for use in _ WD_Action |
115
- | _ WD_JsonCookie | Formats "cookie" JSON strings for use in _ WD_Cookies. |
71
+ | Name | Description |
72
+ | -------------------------| ---------------------------------------------------------------------------------|
73
+ | _ WD_Attach | Attach to existing browser tab. |
74
+ | _ WD_CheckContext | Check if browser context is still valid. |
75
+ | _ WD_ConsoleVisible | Control visibility of the webdriver console app. |
76
+ | _ WD_DownloadFile | Download file and save to disk. |
77
+ | _ WD_ElementActionEx | Perform advanced action on designated element. |
78
+ | _ WD_ElementOptionSelect | Find and click on an option from a Select element. |
79
+ | _ WD_ElementSelectAction | Perform action on designated Select element. |
80
+ | _ WD_ElementStyle | Set/Get element style property. |
81
+ | _ WD_FrameEnter | Enter the specified frame. |
82
+ | _ WD_FrameLeave | Leave the current frame, to its parent. |
83
+ | _ WD_GetBrowserPath | Retrieve path to browser executable from registry. |
84
+ | _ WD_GetBrowserVersion | Get version number of specified browser. |
85
+ | _ WD_GetDevicePixelRatio | Returns an integer indicating the DevicePixelRatio. |
86
+ | _ WD_GetElementById | Locate element by id. |
87
+ | _ WD_GetElementByName | Locate element by name. |
88
+ | _ WD_GetElementByRegEx | Find element by matching attributes values using Javascript regular expression. |
89
+ | _ WD_GetElementFromPoint | Retrieves reference to element at specified point. |
90
+ | _ WD_GetFrameCount | Returns the number of frames/iframes in the current document context. |
91
+ | _ WD_GetMouseElement | Retrieves reference to element below mouse pointer. |
92
+ | _ WD_GetShadowRoot | Retrieves the shadow root of an element. |
93
+ | _ WD_GetTable | Return all elements of a table. |
94
+ | _ WD_GetWebDriverVersion | Get version number of specifed webdriver. |
95
+ | _ WD_HighlightElements | Highlights the specified elements. |
96
+ | _ WD_IsFullScreen | Return a boolean indicating if the session is in full screen mode. |
97
+ | _ WD_IsLatestRelease | Compares local UDF version to latest release on Github. |
98
+ | _ WD_IsWindowTop | Returns a boolean of the session being at the top level, or in a frame(s). |
99
+ | _ WD_JsonActionKey | Formats keyboard "action" strings for use in _ WD_Action |
100
+ | _ WD_JsonActionPause | Formats pause "action" strings for use in _ WD_Action |
101
+ | _ WD_JsonActionPointer | Formats pointer "action" strings for use in _ WD_Action |
102
+ | _ WD_JsonCookie | Formats "cookie" JSON strings for use in _ WD_Cookies. |
103
+ | _ WD_LastHTTPResponse | Return the response of the last WinHTTP request. |
104
+ | _ WD_LastHTTPResult | Return the result of the last WinHTTP request. |
105
+ | _ WD_LinkClickByText | Simulate a mouse click on a link with text matching the provided string. |
106
+ | _ WD_LoadWait | Wait for a browser page load to complete before returning. |
107
+ | _ WD_NewTab | Create new tab in current browser session. |
108
+ | _ WD_PrintToPDF | Print the current tab in paginated PDF format. |
109
+ | _ WD_Screenshot | Takes a screenshot of the Window or Element. |
110
+ | _ WD_SelectFiles | Select files for uploading to a website. |
111
+ | _ WD_SetElementValue | Set value of designated element. |
112
+ | _ WD_SetTimeouts | User friendly function to set webdriver session timeouts. |
113
+ | _ WD_Storage | Provide access to the broswer's localStorage and sessionStorage objects. |
114
+ | _ WD_UpdateDriver | Replace web driver with newer version, if available. |
115
+ | _ WD_WaitElement | Wait for an element in the current tab before returning. |
116
+ | _ WD_jQuerify | Inject jQuery library into current session. |
116
117
117
118
<p >
118
119
</details >
0 commit comments