11 questions
-2
votes
1
answer
44
views
Flutter Golden Screenshot Widget Integration Testing Shadow Mode [closed]
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 ...
1
vote
0
answers
43
views
How to read assets outside the screenshotTest context to create Compose Preview Screenshot Testing
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 ...
5
votes
0
answers
713
views
Android Compose Preview Screenshot Testing Fails due to Could not load font
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 ...
4
votes
2
answers
1k
views
Capture the full composable height in screenshot test
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(
...
3
votes
1
answer
1k
views
Android Compose Test Slider Functionality
var sliderValue by remember { mutableStateOf(value = 0f) }
Slider(
value = sliderValue,
valueRange = 0f..100f,
onValueChange = {
sliderValue = it
},
)
I have ...
1
vote
1
answer
186
views
How can I capture Google Maps with android-testify
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 ...