Kaspresso icon indicating copy to clipboard operation
Kaspresso copied to clipboard

Support compose util for Jetpack Compose

Open matzuk opened this issue 3 years ago • 3 comments

Support such things for Kakao-Compose:

step("Click on the First button") {
    simpleFlakyScreen {
        compose {
            or(firstButton) {
                assertIsDisplayed()
            } thenContinue {
                performClick()
            }
            or(secondButton) {
                assertIsDisplayed()
            } thenContinue {
                performClick()
            }
        }
    }
}

Maybe, the issue will be postponed until the next release.

matzuk avatar Nov 15 '21 06:11 matzuk

Out of scope of Release 1.4

matzuk avatar Nov 23 '21 13:11 matzuk

Could you please explain the problem and the DOD of this task?

RuslanMingaliev avatar Jun 09 '22 17:06 RuslanMingaliev

@RuslanMingaliev compose construction doesn't work for our wrapper over Jetpack Compose

matzuk avatar Jun 22 '22 14:06 matzuk