Skip to content

Commit

Permalink
Version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Abalov authored and Nick Abalov committed Dec 14, 2015
1 parent c24e977 commit 26171c3
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 17 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

<!--## Unreleased-->

## v1.5.0
- Fix crash on bad JSON request body
- Fix not reading http request body to end in certain cases
- Increase default ping timeout
- Add `--ping-timeout` option and `pingTimeout` desired capability to set ping timeout
- Add `noFallback` desired capability to prevent driver from trying to connect to `9998` port
- Add support for deployment of UWP apps (Windows 10 apps)
- Fix error when `debugConnectToRunningApp` is set to `true`
- Add support for accessing `AutomationProperties` with `GetElementAttribute` command


## v1.4.0
- Fix `Remote Procedure Call Failed` when trying to launch app under test by retrying it
- Fix `sessionId` being `null` in response for some commands (thanks to [@tkurnosova](https://github.com/tkurnosova))
Expand Down
4 changes: 2 additions & 2 deletions Winium/Winium.StoreApps.Common/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.0.*")]
[assembly: AssemblyFileVersionAttribute("1.4.0.0")]
[assembly: AssemblyVersion("1.5.0.*")]
[assembly: AssemblyFileVersionAttribute("1.5.0.0")]
4 changes: 2 additions & 2 deletions Winium/Winium.StoreApps.Driver/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.0.*")]
[assembly: AssemblyFileVersion("1.4.0.0")]
[assembly: AssemblyVersion("1.5.0.*")]
[assembly: AssemblyFileVersion("1.5.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.0.*")]
[assembly: AssemblyFileVersionAttribute("1.4.0.0")]
[assembly: AssemblyVersion("1.5.0.*")]
[assembly: AssemblyFileVersionAttribute("1.5.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@
<package>
<metadata>
<id>Winium.StoreApps.InnerServer</id>
<version>1.4.0</version>
<version>1.5.0</version>
<authors>2GIS</authors>
<owners>2GIS</owners>
<projectUrl>https://github.com/2gis/Winium.StoreApps</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Essential part of Winium StoreApps (Selenium Remote WebDriver implementation) that should be included in tested app to enable automation.</description>
<releaseNotes>
v1.5.0
* Fix crash on bad JSON request body
* Fix not reading http request body to end in certain cases
* Increase default ping timeout
+ Add `--ping-timeout` option and `pingTimeout` desired capability to set ping timeout
+ Add `noFallback` desired capability to prevent driver from trying to connect to `9998` port
+ Add support for deployment of UWP apps (Windows 10 apps)
* Fix error when `debugConnectToRunningApp` is set to `true`
+ Add support for accessing `AutomationProperties` with `GetElementAttribute` command
v1.4.0
* Fix `Remote Procedure Call Failed` when trying to launch app under test by retrying it
* Fix `sessionId` being `null` in response for some commands (thanks to @tkurnosova)
Expand All @@ -29,16 +38,6 @@
+ Add Emulator VMs caching (i.e. speed up session creation when same emulator is requested)
* Fix Emulator VMs disposing on Driver exit (note that VM will not be closed)
* Fix Driver failing to create a new session if user name is not lower case (bug introduced in 778ca88)
v1.2.0
* Simplify inclusion of `InnerServer`: call `AutomationServer.Instance.InitializeAndStart();` on UI thread. No need to pass visual root any more.
+ Add `LaunchApp`, `CloseApp` commands [#44](https://github.com/2gis/Winium.StoreApps/issues/44)
+ Add `GetElementSize`, `GetElementRect` commands
+ Add `SubmitElement` command and limited support for `SendKeysToActiveElement` (Enter key only)
+ Add `SendKeys` support for PasswordBox type elements
+ Add `automation: IsOffscreen` command to `ExecuteScript`
* Fix visual tree root discovery
* Fix popup child root element is not included in search [#40](https://github.com/2gis/Winium.StoreApps/issues/40)
* Fix alert related commands to work with `ContentDialog`
</releaseNotes>
<copyright>Copyright © 2015</copyright>
<tags></tags>
Expand Down

0 comments on commit 26171c3

Please sign in to comment.