Skip to content

Commit

Permalink
on smaller displays we have to swipe up
Browse files Browse the repository at this point in the history
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
  • Loading branch information
tobiasKaminsky committed Dec 12, 2019
1 parent 9fce154 commit 50a73b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ android {
testInstrumentationRunnerArgument "TEST_SERVER_USERNAME", "${NC_TEST_SERVER_USERNAME}"
testInstrumentationRunnerArgument "TEST_SERVER_PASSWORD", "${NC_TEST_SERVER_PASSWORD}"
testInstrumentationRunnerArguments disableAnalytics: 'true'
testInstrumentationRunnerArguments clearPackageData: 'true'

multiDexEnabled true

Expand All @@ -152,7 +151,7 @@ android {

buildTypes {
debug {
testCoverageEnabled (project.hasProperty('coverage'))
testCoverageEnabled true
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/androidTest/java/com/owncloud/android/ScreenshotsIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import static androidx.test.espresso.Espresso.onData;
import static androidx.test.espresso.Espresso.onView;
import static androidx.test.espresso.action.ViewActions.click;
import static androidx.test.espresso.action.ViewActions.swipeUp;
import static androidx.test.espresso.matcher.ViewMatchers.withId;
import static androidx.test.espresso.matcher.ViewMatchers.withText;
import static org.hamcrest.core.AnyOf.anyOf;
Expand Down Expand Up @@ -133,6 +134,7 @@ public void autoUploadScreenshot() {
ActivityScenario.launch(FileDisplayActivity.class);

onView(withId(R.id.drawer_layout)).perform(DrawerActions.open());
onView(withId(R.id.nav_view)).perform(swipeUp());
onView(anyOf(withText(R.string.drawer_synced_folders), withId(R.id.nav_synced_folders))).perform(click());

Screengrab.screenshot("05_autoUpload");
Expand Down

0 comments on commit 50a73b4

Please sign in to comment.