-
-
Notifications
You must be signed in to change notification settings - Fork 75
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
Implement swipe and click actions #372
Conversation
...so-server/app/src/androidTest/java/io/appium/espressoserver/lib/helpers/GsonParserHelpers.kt
Outdated
Show resolved
Hide resolved
...so-server/app/src/androidTest/java/io/appium/espressoserver/lib/helpers/GsonParserHelpers.kt
Outdated
Show resolved
Hide resolved
espresso-server/app/src/androidTest/java/io/appium/espressoserver/lib/http/Router.java
Outdated
Show resolved
Hide resolved
...esso-server/app/src/androidTest/java/io/appium/espressoserver/lib/model/MobileSwipeParams.kt
Outdated
Show resolved
Hide resolved
...so-server/app/src/androidTest/java/io/appium/espressoserver/lib/helpers/GsonParserHelpers.kt
Show resolved
Hide resolved
Fixes pushed |
espresso-server/app/src/test/java/io/appium/espressoserver/test/model/MobileSwipeTest.kt
Outdated
Show resolved
Hide resolved
espresso-server/app/build.gradle
Outdated
@@ -14,8 +16,7 @@ android { | |||
|
|||
buildTypes { | |||
release { | |||
minifyEnabled false | |||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |||
minifyEnabled true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why should we enable that? this setting might corrupt class names, so they will not be visible for reflection calls
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
CI is not happy 😢 (adb installation...)
That's right @KazuCocoa ... do you or @mykola-mokhnach have any ideas why that's happening? I'm going to dig into tomorrow to see what happened. |
@dpgraham Most likely because of Travis slowness. How about moving the tests to Azure CI? @SrinivasanTarget has already done this for java client and the performance is good: |
espresso-server/app/build.gradle
Outdated
} | ||
repositories { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we repeat that in both scripts?
6e2a1c5
to
c62c122
Compare
a6095cd
to
38bed6e
Compare
.kt
files..kt
and.java
are interoperable, so no concern about using both simultaneouslymobile: swipe
mobile endpoint. Can now pass parameters{swiper, startCoordinates, endCoordinates, ...}
,mobile: clickAction
mobile endpoint which takes parameters{element, tapper, coordinatesProvider, precisionDescriber, inputDevice, buttonState}