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
Uh oh!
There was an error while loading. Please reload this page.
-
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