Skip to content

Commit 0ade2bb

Browse files
authored
Prep release (#491)
1 parent 1efcbae commit 0ade2bb

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
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+
## [1.2.0] 2023-08-17
1313

1414
### Changed
1515

@@ -1149,7 +1149,8 @@ _WD_CapabilitiesDisplay
11491149
- Initial release
11501150

11511151

1152-
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/1.1.1...HEAD
1152+
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/1.2.0...HEAD
1153+
[1.2.0]: https://github.com/Danp2/au3WebDriver/compare/1.1.1...1.2.0
11531154
[1.1.1]: https://github.com/Danp2/au3WebDriver/compare/1.1.0...1.1.1
11541155
[1.1.0]: https://github.com/Danp2/au3WebDriver/compare/1.0.3...1.1.0
11551156
[1.0.3]: https://github.com/Danp2/au3WebDriver/compare/1.0.2...1.0.3

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ Distributed under the MIT License. See [LICENSE] for more information.
222222
- Thanks to the authors of the Third-Party UDFs
223223
- *Json UDF* by @Ward and @Jos
224224
- *WinHTTP UDF* by @trancexx/[@dragana-r](https://github.com/dragana-r)
225-
- *HtmlTable2Array UDF* by @Chimp
226225
- *WinHttp_WebSocket UDF* by @Danp2
227226
- Thanks to the maintainers
228227
- Thanks to [@Danp2](https://github.com/Danp2) for the project idea, creation and maintenance
@@ -256,7 +255,6 @@ Distributed under the MIT License. See [LICENSE] for more information.
256255
[Opera ReadMe]: https://github.com/operasoftware/operachromiumdriver/blob/master/README.md
257256
[Json UDF]: https://www.autoitscript.com/forum/topic/148114-a-non-strict-json-udf-jsmn
258257
[WinHTTP UDF]: https://github.com/dragana-r/autoit-winhttp/releases/latest
259-
[HtmlTable2Array UDF]: https://www.autoitscript.com/forum/topic/167679-read-data-from-html-tables-from-raw-html-source/
260258
[WinHttp_WebSocket UDF]: https://github.com/Danp2/autoit-websocket
261259
[CONTRIBUTING]: https://github.com/Danp2/au3WebDriver/blob/master/docs/CONTRIBUTING.md
262260
[Change Log]: https://github.com/Danp2/au3WebDriver/blob/master/CHANGELOG.md

au3WebDriver.chm

14 Bytes
Binary file not shown.

wd_core.au3

Lines changed: 1 addition & 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 = "1.1.1"
72+
Global Const $__WDVERSION = "1.2.0"
7373

7474
Global Const $_WD_ELEMENT_ID = "element-6066-11e4-a52e-4f735466cecf"
7575
Global Const $_WD_SHADOW_ID = "shadow-6066-11e4-a52e-4f735466cecf"
@@ -262,7 +262,6 @@ Global $_WD_ERROR_OUTPUTDEBUG = False ; Log errors to "OutputDebugString"
262262
Global $_WD_DEBUG = $_WD_DEBUG_Info ; Trace to console and show web driver app
263263
Global $_WD_CONSOLE = ConsoleWrite ; Destination for console output
264264
Global $_WD_CONSOLE_Suffix = @CRLF ; Suffix added to the end of Message in $_WD_CONSOLE function
265-
Global $_WD_IFILTER = 16 ; Passed to _HtmlTableGetWriteToArray to control filtering
266265
Global $_WD_Sleep = Sleep ; Default to calling standard Sleep function
267266
Global $_WD_DefaultTimeout = 10000 ; 10 seconds
268267
Global $_WD_WINHTTP_TIMEOUTS = True

wd_helper.au3

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@
4444
#ce
4545
#EndRegion Many thanks to:
4646

47-
#ignorefunc _HtmlTableGetWriteToArray
48-
4947
#Region Global Constants
5048
Global Enum _
5149
$_WD_OPTION_None = 0, _
@@ -620,7 +618,7 @@ Func _WD_GetElementFromPoint($sSession, $iX, $iY)
620618
Local $iErr = $_WD_ERROR_Success, $sResult, $bIsNull
621619

622620
; https://developer.mozilla.org/en-US/docs/Web/API/Document/elementFromPoint
623-
; If the specified point is outside the visible bounds of the document or either
621+
; If the specified point is outside the visible bounds of the document or either
624622
; coordinate is negative, the result is null
625623
If $iX < 0 Or $iY < 0 Then
626624
$iErr = $_WD_ERROR_InvalidArgue
@@ -2877,7 +2875,7 @@ EndFunc ;==>_WD_DispatchEvent
28772875
; #FUNCTION# ====================================================================================================================
28782876
; Name ..........: _WD_GetTable
28792877
; Description ...: Return all elements of a table.
2880-
; Syntax ........: _WD_GetTable($sSession, $sBaseElement[, $sRowsXpath = Default[, $sColsXpath = Default[, $sCellsXpath = Default]]])
2878+
; Syntax ........: _WD_GetTable($sSession, $sBaseElement[, $sRowsSelector = Default[, $sColsSelector = Default]])
28812879
; Parameters ....: $sSession - Session ID from _WD_CreateSession
28822880
; $sBaseElement - XPath of the table to return
28832881
; $sRowsSelector - [optional] Rows CSS selector. Default is "tr".
@@ -2892,6 +2890,7 @@ EndFunc ;==>_WD_DispatchEvent
28922890
; Related .......: _WD_FindElement, _WD_ElementAction, _WD_LastHTTPResult
28932891
; Link ..........: https://www.autoitscript.com/forum/topic/191990-webdriver-udf-w3c-compliant-version-01182020/page/18/?tab=comments#comment-1415164
28942892
; Example .......: No
2893+
; ===============================================================================================================================
28952894
Func _WD_GetTable($sSession, $sBaseElement, $sRowsSelector = Default, $sColsSelector = Default)
28962895
Local Const $sFuncName = "_WD_GetTable"
28972896
Local $aElements, $sElement, $iLines, $iRow, $iColumns, $iColumn, $sHTML, $aTable = ''

0 commit comments

Comments
 (0)