Home
last modified time | relevance | path

Searched defs:SemanticsNodeInteraction (Results 1 – 25 of 53) sorted by relevance

123

/compose/ui/ui-test/src/commonMain/kotlin/androidx/compose/ui/test/
DAssertions.kt32 fun SemanticsNodeInteraction.assertIsDisplayed(): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
44 fun SemanticsNodeInteraction.assertIsNotDisplayed(): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
56 fun SemanticsNodeInteraction.assertIsEnabled(): SemanticsNodeInteraction = assert(isEnabled()) in SemanticsNodeInteraction() method
63 fun SemanticsNodeInteraction.assertIsNotEnabled(): SemanticsNodeInteraction = assert(isNotEnabled()) in SemanticsNodeInteraction() method
70 fun SemanticsNodeInteraction.assertIsOn(): SemanticsNodeInteraction = assert(isOn()) in SemanticsNodeInteraction() method
77 fun SemanticsNodeInteraction.assertIsOff(): SemanticsNodeInteraction = assert(isOff()) in SemanticsNodeInteraction() method
84 fun SemanticsNodeInteraction.assertIsSelected(): SemanticsNodeInteraction = assert(isSelected()) in SemanticsNodeInteraction() method
91 fun SemanticsNodeInteraction.assertIsNotSelected(): SemanticsNodeInteraction = in SemanticsNodeInteraction() method
99 fun SemanticsNodeInteraction.assertIsToggleable(): SemanticsNodeInteraction = assert(isToggleable()) in SemanticsNodeInteraction() method
106 fun SemanticsNodeInteraction.assertIsSelectable(): SemanticsNodeInteraction = assert(isSelectable()) in SemanticsNodeInteraction() method
[all …]
DSelectors.kt34 fun SemanticsNodeInteraction.onParent(): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
43 fun SemanticsNodeInteraction.onChildren(): SemanticsNodeInteractionCollection { in SemanticsNodeInteraction() method
60 fun SemanticsNodeInteraction.onChild(): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
73 fun SemanticsNodeInteraction.onChildAt(index: Int): SemanticsNodeInteraction = onChildren()[index] in onChildAt() method
88 fun SemanticsNodeInteraction.onSiblings(): SemanticsNodeInteractionCollection { in onChildAt() method
105 fun SemanticsNodeInteraction.onSibling(): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
125 fun SemanticsNodeInteraction.onAncestors(): SemanticsNodeInteractionCollection { in SemanticsNodeInteraction() method
DBoundsAssertions.kt44 fun SemanticsNodeInteraction.assertWidthIsEqualTo(expectedWidth: Dp): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
53 fun SemanticsNodeInteraction.assertHeightIsEqualTo(expectedHeight: Dp): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
62 fun SemanticsNodeInteraction.assertTouchWidthIsEqualTo( in assertTouchWidthIsEqualTo() method
73 fun SemanticsNodeInteraction.assertTouchHeightIsEqualTo( in SemanticsNodeInteraction() method
85 fun SemanticsNodeInteraction.assertWidthIsAtLeast(expectedMinWidth: Dp): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
95 fun SemanticsNodeInteraction.assertHeightIsAtLeast( in SemanticsNodeInteraction() method
109 fun SemanticsNodeInteraction.assertPositionInRootIsEqualTo( in SemanticsNodeInteraction() method
126 fun SemanticsNodeInteraction.assertTopPositionInRootIsEqualTo( in SemanticsNodeInteraction() method
139 fun SemanticsNodeInteraction.assertLeftPositionInRootIsEqualTo( in SemanticsNodeInteraction() method
148 fun SemanticsNodeInteraction.getUnclippedBoundsInRoot(): DpRect { in SemanticsNodeInteraction() method
[all …]
DTextActions.kt28 fun SemanticsNodeInteraction.performTextClearance() { in SemanticsNodeInteraction() method
37 fun SemanticsNodeInteraction.performTextInput(text: String) { in SemanticsNodeInteraction() method
50 fun SemanticsNodeInteraction.performTextInputSelection(selection: TextRange) { in SemanticsNodeInteraction() method
61 fun SemanticsNodeInteraction.performTextInputSelection( in SemanticsNodeInteraction() method
81 fun SemanticsNodeInteraction.performTextReplacement(text: String) { in SemanticsNodeInteraction() method
97 fun SemanticsNodeInteraction.performImeAction() { in SemanticsNodeInteraction() method
119 private fun SemanticsNodeInteraction.getNodeAndFocus( in SemanticsNodeInteraction() method
DActions.kt57 fun SemanticsNodeInteraction.performClick(): SemanticsNodeInteraction { in <lambda>() method
77 fun SemanticsNodeInteraction.performScrollTo(): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
158 fun SemanticsNodeInteraction.performScrollToIndex(index: Int): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
187 fun SemanticsNodeInteraction.performScrollToKey(key: Any): SemanticsNodeInteraction { in performScrollToKey() method
232 fun SemanticsNodeInteraction.performScrollToNode( in SemanticsNodeInteraction() method
274 private fun SemanticsNodeInteraction.scrollToMatchingDescendantOrReturnScrollable( in SemanticsNodeInteraction() method
324 fun SemanticsNodeInteraction.performGesture( in SemanticsNodeInteraction() method
380 fun SemanticsNodeInteraction.performTouchInput( in SemanticsNodeInteraction() method
429 fun SemanticsNodeInteraction.performMouseInput( in SemanticsNodeInteraction() method
468 fun SemanticsNodeInteraction.performKeyInput( in SemanticsNodeInteraction() method
[all …]
DSemanticsNodeInteraction.kt39 class SemanticsNodeInteraction class
DGlobalAssertions.kt77 fun SemanticsNodeInteraction.invokeGlobalAssertions(): SemanticsNodeInteraction { in SemanticsNodeInteraction() method
DKeyInputHelpers.kt27 fun SemanticsNodeInteraction.performKeyPress(keyEvent: KeyEvent): Boolean { in performKeyPress() method
DIndirectTouchInputHelpers.kt28 fun SemanticsNodeInteraction.performIndirectTouchEvent( in SemanticsNodeInteraction() method
DOutput.kt41 fun SemanticsNodeInteraction.printToString( in <lambda>() method
62 fun SemanticsNodeInteraction.printToLog( in SemanticsNodeInteraction() method
/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/
DBaseLazyLayoutTestWithOrientation.kt74 fun SemanticsNodeInteraction.scrollBy(x: Dp = 0.dp, y: Dp = 0.dp, density: Density) = in SemanticsNodeInteraction() method
90 fun SemanticsNodeInteraction.scrollMainAxisBy(distance: Dp) { in SemanticsNodeInteraction() method
98 fun SemanticsNodeInteraction.assertMainAxisSizeIsEqualTo(expectedSize: Dp) = in SemanticsNodeInteraction() method
105 fun SemanticsNodeInteraction.assertCrossAxisSizeIsEqualTo(expectedSize: Dp) = in SemanticsNodeInteraction() method
112 fun SemanticsNodeInteraction.assertStartPositionIsAlmost(expected: Dp) { in SemanticsNodeInteraction() method
122 fun SemanticsNodeInteraction.assertMainAxisStartPositionInRootIsEqualTo(expectedStart: Dp) = in SemanticsNodeInteraction() method
129 fun SemanticsNodeInteraction.assertStartPositionInRootIsEqualTo(expectedStart: Dp) = in assertStartPositionInRootIsEqualTo() method
136 fun SemanticsNodeInteraction.assertCrossAxisStartPositionInRootIsEqualTo(expectedStart: Dp) = in assertCrossAxisStartPositionInRootIsEqualTo() method
143 fun SemanticsNodeInteraction.assertAxisBounds(offset: DpOffset, size: DpSize) = in SemanticsNodeInteraction() method
/compose/foundation/foundation/integration-tests/lazy-tests/src/androidTest/kotlin/androidx/compose/foundation/
DBaseLazyLayoutTestWithOrientation.kt77 fun SemanticsNodeInteraction.scrollMainAxisBy(distance: Dp) { in SemanticsNodeInteraction() method
85 fun SemanticsNodeInteraction.assertMainAxisSizeIsEqualTo(expectedSize: Dp) = in SemanticsNodeInteraction() method
92 fun SemanticsNodeInteraction.assertCrossAxisSizeIsEqualTo(expectedSize: Dp) = in SemanticsNodeInteraction() method
99 fun SemanticsNodeInteraction.assertStartPositionIsAlmost(expected: Dp) { in SemanticsNodeInteraction() method
109 fun SemanticsNodeInteraction.assertMainAxisStartPositionInRootIsEqualTo(expectedStart: Dp) = in SemanticsNodeInteraction() method
116 fun SemanticsNodeInteraction.assertStartPositionInRootIsEqualTo(expectedStart: Dp) = in assertStartPositionInRootIsEqualTo() method
123 fun SemanticsNodeInteraction.assertCrossAxisStartPositionInRootIsEqualTo(expectedStart: Dp) = in assertCrossAxisStartPositionInRootIsEqualTo() method
130 fun SemanticsNodeInteraction.assertAxisBounds(offset: DpOffset, size: DpSize) = in SemanticsNodeInteraction() method
/compose/material/material/src/androidInstrumentedTest/kotlin/androidx/compose/material/
DMaterialTest.kt66 fun SemanticsNodeInteraction.getFirstBaselinePosition() = getAlignmentLinePosition(FirstBaseline) in SemanticsNodeInteraction() method
68 fun SemanticsNodeInteraction.getLastBaselinePosition() = getAlignmentLinePosition(LastBaseline) in SemanticsNodeInteraction() method
70 fun SemanticsNodeInteraction.assertIsSquareWithSize(expectedSize: Dp) = in SemanticsNodeInteraction() method
DRadioButtonTest.kt56 private fun SemanticsNodeInteraction.assertHasSelectedSemantics(): SemanticsNodeInteraction = in <lambda>() method
59 private fun SemanticsNodeInteraction.assertHasUnSelectedSemantics(): SemanticsNodeInteraction = in <lambda>() method
/compose/material3/material3/src/androidInstrumentedTest/kotlin/androidx/compose/material3/
DMaterialTest.kt86 fun SemanticsNodeInteraction.getFirstBaselinePosition() = getAlignmentLinePosition(FirstBaseline) in SemanticsNodeInteraction() method
88 fun SemanticsNodeInteraction.getLastBaselinePosition() = getAlignmentLinePosition(LastBaseline) in SemanticsNodeInteraction() method
90 fun SemanticsNodeInteraction.assertIsSquareWithSize(expectedSize: Dp) = in SemanticsNodeInteraction() method
DRadioButtonTest.kt56 private fun SemanticsNodeInteraction.assertHasSelectedSemantics(): SemanticsNodeInteraction = in <lambda>() method
59 private fun SemanticsNodeInteraction.assertHasUnSelectedSemantics(): SemanticsNodeInteraction = in <lambda>() method
/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/text/selection/
DSelectionCopyTest.kt150 private fun SemanticsNodeInteraction.startSelection(offset: Int = 0) { in SemanticsNodeInteraction() method
156 private fun SemanticsNodeInteraction.performCopy() { in SemanticsNodeInteraction() method
DSelectionHandlesTest.kt261 private fun SemanticsNodeInteraction.assertVisible(visible: Boolean) { in SemanticsNodeInteraction() method
267 private fun SemanticsNodeInteraction.uniquePixels(): Set<Int> = in SemanticsNodeInteraction() method
/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/text/
DBasicTextGraphicsLayerTest.kt55 private fun SemanticsNodeInteraction.fetchGraphicsLayerOwnerViewId(): List<Long> = in SemanticsNodeInteraction() method
/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/lazy/grid/
DBaseLazyGridTestWithOrientation.kt49 fun SemanticsNodeInteraction.scrollBy(offset: Dp) = scrollMainAxisBy(offset) in SemanticsNodeInteraction() method
/compose/foundation/foundation/integration-tests/lazy-tests/src/androidTest/kotlin/androidx/compose/foundation/lazy/grid/
DBaseLazyGridTestWithOrientation.kt51 fun SemanticsNodeInteraction.scrollBy(offset: Dp) = scrollMainAxisBy(offset) in SemanticsNodeInteraction() method
/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/viewinterop/
DFocusSearchInteropTest.kt102 private fun SemanticsNodeInteraction.performKeyPress(keyEvent: AndroidKeyEvent) { in initParameters() method
/compose/ui/ui-test/src/androidInstrumentedTest/kotlin/androidx/compose/ui/test/assertions/
DBoundsAssertionsTest.kt258 fun SemanticsNodeInteraction.verifySize() { in <lambda>() method
285 fun SemanticsNodeInteraction.verifyTouchSize() { in <lambda>() method
307 fun SemanticsNodeInteraction.verifyBoundsInRoot() { in <lambda>() method
331 fun SemanticsNodeInteraction.verifyAlignmentLine() { in <lambda>() method
/compose/ui/ui-test/src/androidMain/kotlin/androidx/compose/ui/test/
DAndroidImageHelpers.android.kt50 fun SemanticsNodeInteraction.captureToImage(): ImageBitmap { in SemanticsNodeInteraction() method
/compose/foundation/foundation/integration-tests/lazy-tests/src/androidTest/kotlin/androidx/compose/foundation/lazy/list/
DBaseLazyListTestWithOrientation.kt89 fun SemanticsNodeInteraction.scrollBy(offset: Dp) = in SemanticsNodeInteraction() method

123