diff options
author | Rui Marinho <me@ruimarinho.net> | 2016-06-22 15:59:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-22 15:59:54 +0100 |
commit | e5dd925ee5efe8d931aa8f1cbfc13d793faee567 (patch) | |
tree | 7f12179273803dcae1cc7da237814b0bddce194f /Xamarin.Forms.iOS.UITests/Legacy-PlatformHelpers.cs | |
parent | 22f3c5b3646f03c597f8dd1151fabedfb6007349 (diff) | |
download | xamarin-forms-e5dd925ee5efe8d931aa8f1cbfc13d793faee567.tar.gz xamarin-forms-e5dd925ee5efe8d931aa8f1cbfc13d793faee567.tar.bz2 xamarin-forms-e5dd925ee5efe8d931aa8f1cbfc13d793faee567.zip |
[Controls] Fix use of internal extension methods (#237)
* [Controls] Fix use of internal extension methods
* [Controls] Update Xamarin UItest on controls
* Update package TestCloud
* Fix
* Revert "Fix"
This reverts commit 283f96a2210322bf37795dff61394938eb909f59.
* Fix reference
Diffstat (limited to 'Xamarin.Forms.iOS.UITests/Legacy-PlatformHelpers.cs')
-rw-r--r-- | Xamarin.Forms.iOS.UITests/Legacy-PlatformHelpers.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Xamarin.Forms.iOS.UITests/Legacy-PlatformHelpers.cs b/Xamarin.Forms.iOS.UITests/Legacy-PlatformHelpers.cs index 410f50ef..014b6a50 100644 --- a/Xamarin.Forms.iOS.UITests/Legacy-PlatformHelpers.cs +++ b/Xamarin.Forms.iOS.UITests/Legacy-PlatformHelpers.cs @@ -91,15 +91,15 @@ namespace Xamarin.Forms.UITests public static void SwipeBackNavigation (this iOSApp app) { - app.PanCoordinates (0, 125, 75, 125, TimeSpan.FromSeconds (5)); + //app.PanCoordinates (0, 125, 75, 125, TimeSpan.FromSeconds (5)); } public static void DragFromTo (this iOSApp app, float xStart, float yStart, float xEnd, float yEnd, Speed speed = Speed.Fast) { - if (speed == Speed.Slow) - app.PanCoordinates (xStart, yStart, xEnd, yEnd, TimeSpan.FromMilliseconds (3000)); - else - app.PanCoordinates (xStart, yStart, xEnd, yEnd, TimeSpan.FromMilliseconds (1000)); + //if (speed == Speed.Slow) + // app.PanCoordinates (xStart, yStart, xEnd, yEnd, TimeSpan.FromMilliseconds (3000)); + //else + // app.PanCoordinates (xStart, yStart, xEnd, yEnd, TimeSpan.FromMilliseconds (1000)); } |