Skip to content

Commit f7f9713

Browse files
authored
Prepare release (#304)
* Version bump * Update RM * Update CL * Update help file * Fix: desginated >> designated * Remove html
1 parent 9354151 commit f7f9713

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
Go to [legend](#legend---types-of-changes) for further information about the types of changes.
1111

12-
## [Unreleased]
12+
## [0.9.0]
1313

1414
### Added
1515

@@ -927,7 +927,8 @@ _WD_CapabilitiesDisplay
927927

928928
- Initial release
929929

930-
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/0.8.1...HEAD
930+
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/0.9.0...HEAD
931+
[0.9.0]: https://github.com/Danp2/au3WebDriver/compare/0.8.1...0.9.0
931932
[0.8.1]: https://github.com/Danp2/au3WebDriver/compare/0.8.0...0.8.1
932933
[0.8.0]: https://github.com/Danp2/au3WebDriver/compare/0.7.0...0.8.0
933934
[0.7.0]: https://github.com/Danp2/au3WebDriver/compare/0.6.0...0.7.0

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This au3WebDriver UDF (project) allows to interact with any browser that support
5252
| _WD_Action | Perform various interactions with the web driver session. |
5353
| _WD_Window | Perform interactions related to the current window. |
5454
| _WD_FindElement | Find element(s) by designated strategy. |
55-
| _WD_ElementAction | Perform action on desginated element. |
55+
| _WD_ElementAction | Perform action on designated element. |
5656
| _WD_ExecuteScript | Execute Javascipt commands. |
5757
| _WD_Alert | Respond to user prompt. |
5858
| _WD_GetSource | Get page source. |
@@ -77,6 +77,7 @@ This au3WebDriver UDF (project) allows to interact with any browser that support
7777
| _WD_GetMouseElement | Retrieves reference to element below mouse pointer. |
7878
| _WD_GetElementFromPoint | Retrieves reference to element at specified point. |
7979
| _WD_LastHTTPResult | Return the result of the last WinHTTP request. |
80+
| _WD_LastHTTPResponse | Return the response of the last WinHTTP request. |
8081
| _WD_GetFrameCount | Returns the number of frames/iframes in the current document context. |
8182
| _WD_IsWindowTop | Returns a boolean of the session being at the top level, or in a frame(s). |
8283
| _WD_FrameEnter | Enter the specified frame. |
@@ -88,7 +89,7 @@ This au3WebDriver UDF (project) allows to interact with any browser that support
8889
| _WD_PrintToPDF | Print the current tab in paginated PDF format. |
8990
| _WD_jQuerify | Inject jQuery library into current session. |
9091
| _WD_ElementOptionSelect | Find and click on an option from a Select element. |
91-
| _WD_ElementSelectAction | Perform action on desginated Select element. |
92+
| _WD_ElementSelectAction | Perform action on designated Select element. |
9293
| _WD_ConsoleVisible | Control visibility of the webdriver console app. |
9394
| _WD_GetShadowRoot | Retrieves the shadow root of an element. |
9495
| _WD_SelectFiles | Select files for uploading to a website. |
@@ -102,7 +103,7 @@ This au3WebDriver UDF (project) allows to interact with any browser that support
102103
| _WD_GetElementById | Locate element by id. |
103104
| _WD_GetElementByName | Locate element by name. |
104105
| _WD_SetElementValue | Set value of designated element. |
105-
| _WD_ElementActionEx | Perform advanced action on desginated element. |
106+
| _WD_ElementActionEx | Perform advanced action on designated element. |
106107
| _WD_GetTable | Return all elements of a table. |
107108
| _WD_IsFullScreen | Return a boolean indicating if the session is in full screen mode. |
108109
| _WD_GetDevicePixelRatio | Returns an integer indicating the DevicePixelRatio. |
@@ -137,7 +138,7 @@ This au3WebDriver UDF (project) allows to interact with any browser that support
137138
| _WD_CapabilitiesAdd | Add capablitities to JSON string |
138139
| _WD_CapabilitiesGet | Get the JSON string |
139140
| _WD_CapabilitiesDump | Dump to console |
140-
| _WD_CapabilitiesDisplay | Display the current content |
141+
| _WD_CapabilitiesDefine | Define a new capability by selecting a type and specifying a name |
141142

142143
<p>
143144
</details>

Webdriver.chm

116 Bytes
Binary file not shown.

wd_core.au3

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
#EndRegion Many thanks to:
7070

7171
#Region Global Constants
72-
Global Const $__WDVERSION = "0.8.1"
72+
Global Const $__WDVERSION = "0.9.0"
7373

7474
Global Const $_WD_ELEMENT_ID = "element-6066-11e4-a52e-4f735466cecf"
7575
Global Const $_WD_SHADOW_ID = "shadow-6066-11e4-a52e-4f735466cecf"
@@ -695,7 +695,7 @@ EndFunc ;==>_WD_FindElement
695695

696696
; #FUNCTION# ====================================================================================================================
697697
; Name ..........: _WD_ElementAction
698-
; Description ...: Perform action on desginated element.
698+
; Description ...: Perform action on designated element.
699699
; Syntax ........: _WD_ElementAction($sSession, $sElement, $sCommand[, $sOption = Default])
700700
; Parameters ....: $sSession - Session ID from _WD_CreateSession
701701
; $sElement - Element ID from _WD_FindElement

wd_helper.au3

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ EndFunc ;==>_WD_FrameLeave
608608

609609
; #FUNCTION# ===========================================================================================================
610610
; Name ..........: _WD_HighlightElement
611-
; Description ...: Highlights the specified element. <B>[Deprecated]</B>
611+
; Description ...: Highlights the specified element. [Deprecated]
612612
; Syntax ........: _WD_HighlightElement($sSession, $sElement[, $iMethod = Default])
613613
; Parameters ....: $sSession - Session ID from _WD_CreateSession
614614
; $sElement - Element ID from _WD_FindElement
@@ -962,7 +962,7 @@ EndFunc ;==>_WD_ElementOptionSelect
962962

963963
; #FUNCTION# ====================================================================================================================
964964
; Name ..........: _WD_ElementSelectAction
965-
; Description ...: Perform action on desginated <select> element.
965+
; Description ...: Perform action on designated <select> element.
966966
; Syntax ........: _WD_ElementSelectAction($sSession, $sSelectElement, $sCommand[, $aParameters = Default])
967967
; Parameters ....: $sSession - Session ID from _WD_CreateSession
968968
; $sSelectElement - Element ID of <select> element from _WD_FindElement
@@ -975,7 +975,7 @@ EndFunc ;==>_WD_ElementOptionSelect
975975
; |SELECTEDLABELS - Retrieves labels of selected <option> elements as 1D array
976976
; |SELECTEDOPTIONS- Retrieves selected <option> elements as 2D array containing 4 columns (value, label, index and selected status)
977977
; |VALUE - Retrieves value of the first selected <option> element
978-
; $aParameters - List of parameters (depending on chosen $sCommand)
978+
; $aParameters - [optional] List of parameters (depending on chosen $sCommand)
979979
; Return values .: Success - Requested data returned by web driver.
980980
; Failure - "" (empty string) and sets @error to one of the following values:
981981
; - $_WD_ERROR_NoMatch

0 commit comments

Comments
 (0)