Reputation: 662
I am using Robot Framework 4.1.1 and Appium-Python-Client 1.2.0 to run a test on an Android native app. I tried to use the Resource-ID locator (=welcome.pages.welcome.title) in different ways:
I get results:
So, I found the workaround. But how I can use just the ID value in the variable? The first case doesn't work and I don't understand why.
Upvotes: 1
Views: 1059
Reputation: 277
try use the equal symbol near the variable
${Welcome_element]= welcome.pages.welcome.title
and at least two space after...
Upvotes: 0