Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
1 answer
44 views

Why is it that my text fails to load in Flutter Widget Integration Testing in Shadow Mode. I use Golden package to take screenshots, and no matter how long I pump and wait for environment to load, I ...
Elvis Skensberg's user avatar
1 vote
0 answers
43 views

Currently using the Compose Preview Screenshot Testing library successfully to a certain degree. The version I am currently using is 0.0.1-alpha08 The app is a multi-modular app with the following ...
Shadow's user avatar
  • 4,879
5 votes
0 answers
713 views

I just started exploring android compose preview screenshot testing. In my first attempting running the tests via ./gradlew updateDebugScreenshotTest I got the following error Cannot update reference ...
Mehdi Satei's user avatar
  • 1,640
4 votes
2 answers
1k views

I have this class which we use as a base class for our screenshot tests abstract class ScreenshotTest { @get:Rule val rule = createComposeRule() protected fun snapshotComposable( ...
Billda's user avatar
  • 6,067
3 votes
1 answer
1k views

var sliderValue by remember { mutableStateOf(value = 0f) } Slider( value = sliderValue, valueRange = 0f..100f, onValueChange = { sliderValue = it }, ) I have ...
Swapnil Musale's user avatar
1 vote
1 answer
186 views

I am trying to leverage https://github.com/Shopify/android-testify to implement some screenshot tests. However, it is having trouble capturing the map. I have tried with and without ...
isuPatches's user avatar
  • 7,754