python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Filtering Android Connected Tests
I have a few "connected" tests that are only relevant to run on a specific device model or on a specific brand and should be skipped on other brands/models.
I may be missing something, but t...

ben75
Votes: 0
Answers: 1
How to construct unit tests combining Robolectric and AndroidX with Jetpack Compose?
Assumptions
Robolectric controls which Android version to emulate, so I need this
AndroidX has the test API for Jetpack Compose, so I need this as well
Background
I have experienced a lot of AppNotI...
Alix
Votes: 0
Answers: 0
How to assert the activity is finished with espresso
I want to assert the activity is finished after clicking a button.
eg: if the user clicked button with id R.id.finish, then the activity is finished.
I'm trying to look up apis with ActivitySenerio an...

DevDengChao
Votes: 0
Answers: 1
What is the new preferred approach to running code before and after activity finishes with ActivityScenarioRule?
Previously with ActivityTestRule, one was able to override beforeActivityLaunched and afterActivityFinished to control app state before and after all tests (e.g, implementing a custom rule Class that ...
AaronMT
Votes: 0
Answers: 0