Daniel Jette

Results 58 comments of Daniel Jette

@isuPatches 😕 I really appreciate you taking the time to work with me on this issue. I'm not surprised that this ended up being an Android Studio/.idea issue. The Testify...

@jaredh we ran into this at work today. Do remember what we need to change to support this?

@mtrewartha We're still working to publish a permanent fix to this. In the meantime, the work around is to use the old-school `classpath` entry in your `build.gradle` Even if you...

Hi @videogreg93 thanks for the bug report Testify will capture the screen immediately after the screen goes idle as it assumes that, once the UI thread is idle, that all...

_Copied from https://github.com/Shopify/android-testify/issues/245#issuecomment-925922709_ Hey there, thanks for tip! I tried adding a simple idling resource which just waits a couple of seconds to see if that would work, but even...

@videogreg93 I was thinking about this problem a little more last night and I'm wondering if you might be running in to a GPU-acceleration problem. Testify's default capture method is...

Hi @jennatauro As image loading libraries like Coil, Picasso or Glide typically load the bitmaps asynchronously in the background, race conditions with Testify are common. For this reason, Testify was...

_Copied from https://github.com/Shopify/android-testify/issues/264#issuecomment-1059824767_ Hi @DanielJette would you be able to take a look at https://github.com/Shopify/android-testify/pull/265 ? I've added a draft pull request that uses the same sort of logic we're...

@jennatauro Thanks for providing that Sample. I'll take a look and see if I can offer any better solutions.

@jennatauro I've opened a PR using a synchronization mechanism that seems to be working for me https://github.com/Shopify/android-testify/pull/266 The main change that I have made is to couple the idling resource...