i've just started using appium with python and i'm a bit confused about getting and element by ID. In the appium inspector, i have this elementID
Following appium's documentation, i tried this
fin = driver.find_elements(
AppiumBy.ACCESSIBILITY_ID,
"00000000-0000-03c4-ffff-ffff000000c5",
)
action_user.tap(fin).perform()
But it didn't work. I also tried it as "android:id/00000000-0000-03c4-ffff-ffff000000c5"
. But nothing happen. Is there another way to get this element by the ID?