I have a number of screens with a spinner on the actionbar. When the user changes the spinner option, the list below refreshes with the appropriate data. The activity spawns an async task whenever the user changes the spinner option. But my expresso test seems to fail whenever the option is clicked as the test is looking for a specific post in the list. If I add a sleep, it works fine and finds the post. How do I make the expresso test wait for that async task ?
Android Expresso - wait for async task to finish
366 Views Asked by user1018916 At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in ANDROID-ASYNCTASK
- AsyncTask Class
- Fragment AsyncTask not executing after back button pressed
- change selected gridview cell background in android?
- How can I return an ArrayList from my AsyncTask?
- unfortunately app closed error in android app when i debug the code
- Will fragments in a ViewPager sometimes get garbage collected? An AsyncTask / ListView / ViewPager issue
- Another function is not calling after AsyncTask onPostExecute
- Android Database in AsyncTask in Fragment
- How to play pre-recorded audio in reverse direction, using AudioTrak / AudioRekord IPA and Multithreading
- FATAL EXCEPTION: AsyncTask #1 An error occured while executing doInBackground
- FATAL EXCEPTION: AsyncTask caused by ConcurrentModificationException
- How to restart AsyncTask when wifi change?
- One AsyncTask for multiple Fragments
- Using AsyncTask to login user
- Get value from data base using AsyncTask and change TextView value in Fragment
Related Questions in EXPRESSO
- Rethinkdb with nodejs and expresso
- Testing searchview in android - Instrumentation testing
- Expresso Store - Exclude Product from Order Quantity
- How do I get the code coverage output to display using expresso?
- What's the regex for restricted number of numeric characters?
- Expresso not installing on Windows 7
- How to create a data driven test in Node.js
- Automate UI Tests in a Kotlin Compose Project - equivalent version of Expresso Recorder
- Member Registration in Expresso Store
- Regular expressions, capture group
- Android Expresso - wait for async task to finish
- How to unit test location services pop up in Android
- How do I mock a class with expresso in android?
- How to integrate Expresso and Control M Jobs with splunk?
- No views in hierarchy found matching: Child at position 0 in parent Child at position 0 in parent view.getId
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Use the get method for an AsyncTask which (from the docs):
Should be something like: