Rafa Vázquez
Rafa Vázquez
Hi there! **TL;DR:** Composer always pulls screenshots from `/storage/emulated/0/` but in API 22 they're stored in `/storage/sdcard/`. **Long version:** We have a device farm with some API 22 emulators, and...
Until now we didn't take good care of how Barista fails. We have some tests to check that it fails, but not how it fails. After looking around in the...
The changes proposed in https://github.com/SchibstedSpain/Barista/pull/223 raised the discussion of just having simple methods for searching views by id and text, or having more combinations for special cases. Allowing a third...
There are some tests like `checkEnabledView_breaksWhenNeeded` with code like this: ```java try { assertEnabled(R.id.disabled_button); fail(); } catch (Throwable expected) { } ``` They're broken because they **always pass**. If `assertEnabled`...
As asked and resolved in [this StackOverflow thread](https://stackoverflow.com/a/40524247), it would be great to have a method to click spans inside TextViews, which is not directly trivial with Espresso only. I...
The catch in assetDisplayed is not right. When a view is not displayed (first case in the code), the error is absorbed by the SpyFailureHandler and never redirected to the...
This feature request is to allow passing a custom logger implementation to the Segment SDK. This will allow users to log errors somewhere different from the Logcat. The motivation behind...
For consistency, `debugdrawer-no-op` should include `view-no-op`, the same way the normal submodules do. Otherwise, if you're using the `DebugView` in your code and have dependencies like this ```groovy debugCompile "io.palaima.debugdrawer:debugdrawer:$version"...
For applications with long lists of preferences it would be nice to have a searchbox allowing to filter the results displayed, and quickly find the preference you're interested in.