Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull changes from NetlifeBackupSolutions/Winium.StoreApps fork #167

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
330f2d6
Improved exception handling
ole-vegard Sep 3, 2015
712c0a2
Updated README
ole-vegard Sep 3, 2015
98bff1a
Updated readme.md to point to gist
ole-vegard Sep 9, 2015
7be57cf
Use ToString on exceptions to get stack trace of inner exceptions too.
Sep 11, 2015
c9d80e6
Removed IsHitTestVisible from IsUserVisible
ole-vegard Sep 16, 2015
4fd1cf7
Added support for dependencies
ole-vegard Sep 25, 2015
7ed489d
Added 'Label' to InnerDrivers TextCommand
ole-vegard Oct 6, 2015
3117c34
Added support for AppBarButtons in IsUserVisible
ole-vegard Oct 6, 2015
f3d2518
Changed IsUserVisible
ole-vegard Oct 7, 2015
bcb44e9
Minor changes after code review
ole-vegard Oct 8, 2015
3f799c0
Merge pull request #6 from NetlifeBackupSolutions/olevegard/appbar
ole-vegard Oct 8, 2015
6dffd32
Changed click in Winium.StoreApps
ole-vegard Oct 22, 2015
b404612
Added id to error message
ole-vegard Oct 23, 2015
f2ca1de
Merge pull request #7 from NetlifeBackupSolutions/olevegard/appbar
ole-vegard Oct 23, 2015
c12a682
Added script for reading text file from local isolated storage
Nov 5, 2015
491256e
Merge branch 'temp'
Nov 5, 2015
3e1134f
MouseMoveToExecutor works with move_to_element_with_offset
Nov 6, 2015
8ccc359
Allow attributes from FrameworkElementExtensions.
Nov 17, 2015
5d505a0
Merge pull request #10 from NetlifeBackupSolutions/magnarn/attribute-…
magnarn Nov 17, 2015
00b92e5
Remove stale registrations of WiniumElement
Nov 19, 2015
19925c4
Fixed bug in AlertCommand
Nov 28, 2015
ca0391c
Fix project files for Release ARM build to store
runelabs Mar 17, 2016
4161ead
Use "pdbonly" for all Release configurations
runelabs Mar 17, 2016
49c71ff
Merge pull request #11 from NetlifeBackupSolutions/rune/CAPSOL-106/fi…
runelabs Mar 18, 2016
58c2a9f
Revert "Fix project files for Release ARM build to store"
runelabs Mar 18, 2016
308a476
Merge pull request #12 from NetlifeBackupSolutions/revert-11-rune/CAP…
runelabs Mar 18, 2016
71a28c4
Merge remote-tracking branch 'winium/master'
ole-vegard Apr 7, 2016
a944377
Refactor get attribute to use own accessor
ole-vegard Apr 11, 2016
ae709d6
Merge pull request #13 from NetlifeBackupSolutions/use_version_1.6.2
ole-vegard Jun 6, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed IsHitTestVisible from IsUserVisible
-IsHitTestVisible is intended to prevent the FrameworkElement from
consuming the click/tap so that it goes straight to the componenet under.
-It's true by default, it has to be set to false epxlicitly.
-Thus it doesn't say anything about whether the FrameworkElement is
visible or not, just whehter it is clickable
ole-vegard committed Sep 28, 2015
commit c9d80e6a110b3ad940a22b32e9c42ad0a0cf3d49
Original file line number Diff line number Diff line change
@@ -46,8 +46,7 @@ internal bool IsUserVisible()

while (true)
{
if (currentElement.Visibility != Visibility.Visible || !currentElement.IsHitTestVisible
|| !(currentElement.Opacity > 0))
if (currentElement.Visibility != Visibility.Visible || !(currentElement.Opacity > 0))
{
return false;
}