Skip to content

Instantly share code, notes, and snippets.

@bholota
Created May 31, 2016 12:28
Show Gist options
  • Save bholota/fb84de9a797cd3771871e3bc8b548a56 to your computer and use it in GitHub Desktop.
Save bholota/fb84de9a797cd3771871e3bc8b548a56 to your computer and use it in GitHub Desktop.
Wake up before UI test
public final class BaristaUtils {
public static void wakeUp() {
InstrumentationRegistry.getInstrumentation().runOnMainSync(new Runnable() {
@Override
public void run() {
Window window = new ComponentFinder().findCurrentActivity().getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment