Compose icon indicating copy to clipboard operation
Compose copied to clipboard

Question on how I can retrieve the actual value of a field for some custom assertions

Open braindonor opened this issue 3 years ago • 0 comments

Hi,`

I'd like to perform some custom assertions on a field such as the one in the example code below. I'm sorry if this is an obvious question, but I've been unsuccessful in my attempts to assign a variable to the contents of the "testNumber" field.

     private val testNumber: KNode = onNode {
           hasTestTag("test_number")
           hasPosition(0)
           useUnmergedTree = true
      }

      testNumber {
            assertIsDisplayed()
            assertTextEquals(number)
      }

Many thanks,

Pentti

`

braindonor avatar Mar 18 '22 10:03 braindonor