Extracting seller names from amazon seller offer list page

Hello Everyone,
I am a beginner user of Kantu UI.Vision RPA. I want to extract the names of the sellers from the amazon seller info page. Here is a link for example ↓
https://www.amazon.sg/gp/offer-listing/B01L2CP62G/ref=dp_olp_new_mbc?ie=UTF8&condition=new
I want to copy one by one seller’s name from the page from the section “Seller Information”. I have written code with my small experience in Kantu but it extracts it in the HTML format but I want it as one by one in a CSV file column and also want a count of sellers. Some time seller names are in image format but by selecting and copying the image and paste as the text it shows the name exact as image.

Please help to solve this.↓

{
“Name”: “amz_seller”,
“CreationDate”: “2020-3-27”,
“Commands”: [
{
“Command”: “csvRead”,
“Target”: “amz_seller_links”,
“Value”: “”
},
{
“Command”: “open”,
“Target”: “${!COL1}”,
“Value”: “”
},
{
“Command”: “waitForPageToLoad”,
“Target”: “”,
“Value”: “”
},
{
“Command”: “store”,
“Target”: “true”,
“Value”: “!ErrorIgnore”
},
{
“Command”: “store”,
“Target”: “2”,
“Value”: “!TIMEOUT_WAIT”
},
{
“Command”: “store”,
“Target”: “${!URL}”,
“Value”: “!csvLine”
},
{
“Command”: “storeText”,
“Target”: “xpath=//*[@id="olpOfferList"]/div”,
“Value”: “!csvLine”
},
{
“Command”: “store”,
“Target”: “${!URL}”,
“Value”: “!csvLine”
},
{
“Command”: “csvSave”,
“Target”: “Amz_Seller_Ext”,
“Value”: “”
}
]
}

Hi @Bob

This is an hard case because the seller name is not a text with similar format but change.

I think need to store text or image name, edit value stored, after save in csv.

This is not a fast work, need time and need a custom macro.

Hi @newuserkantu

Thanks for replying.

Please help if you can.