Replies: 1 comment 3 replies
-
elements = py.find("ul[id='ulid'] > li")
for el in elements:
if el.text() == "text":
el.click()
break |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Elements = py.find("ul[id='ulid']>li")
for el in Elements:
if el.text == 'text':
el.click()
break
Beta Was this translation helpful? Give feedback.
All reactions