Skip to content

Commit ac3412b

Browse files
authored
Prep release (#449)
1 parent 7713220 commit ac3412b

File tree

6 files changed

+34
-4
lines changed

6 files changed

+34
-4
lines changed

CHANGELOG.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,35 @@ 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+
## [ 0.13.0]
13+
14+
### Added
15+
16+
- _WD_ElementActionEx: Support for `remove` command (@Sven-Seyfert)
17+
18+
### Changed
19+
20+
- _WD_LoadWait: Invalid context detection
21+
- _WD_CheckContext: Invalid context detection
22+
- _WD_Window: Accept unformatted handles (@seadoggie01)
23+
- _WD_CreateSession: Improved error handling (@mlipok)
24+
- __WD_DetectError
25+
- Detect session not created errors
26+
- Detect shadow root not found errors
27+
- Detect frame not found errors
28+
- _WD_DebugSwitch: Refactored to allow returning current stack size (@mlipok)
29+
- _WD_FrameList: Added frame visibility information (@mlipok)
30+
- _WD_ExecuteScript: Improved logging messages
31+
- _WD_Shutdown: Add delay before closing webdriver
32+
- wd_demo
33+
- Set `binary` capability for geckodriver & operadriver
34+
- Added UserFile demo to allow execution of code from file
35+
36+
### Fixed
37+
38+
- _WD_FrameLeave: Error reporting (@mlipok)
39+
- Remove leftover $_WD_HTTPRESULT checks (_WD_Window, _WD_ElementAction, _WD_FindElement)
40+
1241
## [ 0.12.0]
1342

1443
### Added
@@ -1019,7 +1048,8 @@ _WD_CapabilitiesDisplay
10191048
- Initial release
10201049

10211050

1022-
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/0.12.0...HEAD
1051+
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/0.13.0...HEAD
1052+
[0.13.0]: https://github.com/Danp2/au3WebDriver/compare/0.12.0...0.13.0
10231053
[0.12.0]: https://github.com/Danp2/au3WebDriver/compare/0.11.0...0.12.0
10241054
[0.11.0]: https://github.com/Danp2/au3WebDriver/compare/0.10.1...0.11.0
10251055
[0.10.1]: https://github.com/Danp2/au3WebDriver/compare/0.10.0...0.10.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This au3WebDriver UDF (project) allows to interact with any browser that support
2525
| :---: | :--- | :--- |
2626
| <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/W3C_icon.svg/212px-W3C_icon.svg.png" width="20"> | [W3C WebDriver] | Official W3C WebDriver standard/specification. |
2727
| 📚 | [WebDriver Wiki] | Further information about this UDF (project) like big picture, capabilities, troubleshooting and more. |
28-
| 📖 | Webdriver.chm | Function CHM help file that comes with this UDF (project) download. |
28+
| 📖 | au3WebDriver.chm | Help file that comes with this UDF (project) download. |
2929

3030
## Features
3131

Webdriver.chm

-58.1 KB
Binary file not shown.

au3WebDriver.chm

58.3 KB
Binary file not shown.

wd_core.au3

Lines changed: 1 addition & 1 deletion
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.12.0"
72+
Global Const $__WDVERSION = "0.13.0"
7373

7474
Global Const $_WD_ELEMENT_ID = "element-6066-11e4-a52e-4f735466cecf"
7575
Global Const $_WD_SHADOW_ID = "shadow-6066-11e4-a52e-4f735466cecf"

wd_helper.au3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ Func _WD_DebugSwitch($vMode = Default, $iErr = @error, $iExt = @extended)
489489
$iStackSize = -2
490490
$sMessage = 'Invalid argument in function-call'
491491
EndIf
492-
492+
493493
$sMessage &= " / " & (($iStackSize < 0) ? (" error code: ") : (" stack size: ")) & $iStackSize
494494
__WD_ConsoleWrite($sFuncName & ": " & $sMessage, $_WD_DEBUG_Info)
495495
Return SetError($iErr, $iExt, $iStackSize) ; do not use __WD_Error() here as $iErr and $iExt are preserved and not belongs to this function

0 commit comments

Comments
 (0)