How to capture this?

Nikex

Registered Member
Joined
Jun 10, 2011
Messages
52
Reaction score
21
I run a bot that create some sort of accounts
there is a text that is rarely show when you create that account and that account im looking for
for now i make screenshots but it's hard to see hundreds of screenshots to find that specific one
and also can't make the bot detect it because i don't know the code
I used xpath and with ">MATCH> but didn't work since im not sure about the element code

is there another solution to capture it? all I know about it is the text
so is there solution to find it just by the text and not the code?
 
Your question is not clear enough, can you explain better, also, it would help if you send a screenshot of the portion of code you are having an issue with
 
Should be acheivebale with a contains assume this text is rendered.. .xpath('//*[contains(text(), "sometext")]')
 
If you are working with site, then better to target innerHTML or textContent to find your element. But yeah, your question isn`t clear enough to give you more precise answers
 
Back
Top