How to scrape from Canva

Hi
I’m trying to scrape from my team page
I need the username and emails columns

see attachment

this is my code
and it’s not working
I’m getting #LNF in all of the 5 results

Would love to get some help here please :slight_smile:

{

“Name”: “canva”,
“CreationDate”: “2022-2-26”,
“Commands”: [
{
“Command”: “open”,
“Target”: “https://www.canva.com/settings/people”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “times”,
“Target”: “5”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “storeText”,
“Target”: “xpath=//*[@class="ZP8HvQ-${!times}"]/div/div/div/div/div[2]/div/table/tbody/tr/td[2]/div/div/p/span”,
“Value”: “email”,
“Description”: “”
},
{
“Command”: “echo”,
“Target”: “Result ${!times}: ${email}”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “end”,
“Target”: “”,
“Value”: “”,
“Description”: “”
}
]
}

(1) Find a good and stable XPath

(2) OR: Use visual (OCR) screen scraping

See also Web Scraping with Selenium IDE Commands - Tutorial

1 Like

Thanks :slight_smile:
The screen scraping looks interesting
But how do I make it repeat the process and go
The next rows?