Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Abalov authored and Nick Abalov committed Jul 29, 2015
1 parent f379e24 commit f0391c1
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 4 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Change Log

<!--## Unreleased-->


## 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` (<kbd>Enter</kbd> 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`


## v1.1.1

- Add execute script command to show or hide on-screen keyboard
- Add execute script command to return clickable point as determined by Automation API


## v1.1.0

- Add status command
- Change element visibility check algorithm in IsElementDisplayed
- Project configurations and code clean up


## v1.0.1

- Add toggle pattern support for ExecuteScript automation: command.
- Change PageSource to output element's rectangle instead of middle point.
- Add Winium.StoreApps.Inspector (tool to inspect tested app's UI).


## v1.0.0

- First official release.

2 changes: 1 addition & 1 deletion Winium/Winium.StoreApps.Common/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
// 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.1.0.*")]
[assembly: AssemblyVersion("1.2.0.*")]
2 changes: 1 addition & 1 deletion 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.1.1.*")]
[assembly: AssemblyVersion("1.2.0.*")]
[assembly: AssemblyFileVersion("1.1.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
// 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.1.1.*")]
[assembly: AssemblyVersion("1.2.0.*")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@
<package>
<metadata>
<id>Winium.StoreApps.InnerServer</id>
<version>1.1.1</version>
<version>1.2.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.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`
v1.1.1
+ Add execute script command to show or hide on-screen keyboard
+ Add execute script command to return clickable point as determined by Automation API
Expand Down

0 comments on commit f0391c1

Please sign in to comment.