0% found this document useful (0 votes)
17 views2 pages

01 Test Instructions

Uploaded by

Dhanush Dhanush
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views2 pages

01 Test Instructions

Uploaded by

Dhanush Dhanush
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

Scrape products with complete Title, Image, Short description, description, tag,

category and price.

1. Open "order_export" file


2. Check orders which are not failed or cancelled first. You may use filter to hide
those.
3. Column "H" has product names
4. Use chatgpt and give prompt [Give me keywords to search on ebay to find products
similar to this "Replace with the product name received from order_export file"
that have high potential for sales]
5. Take keywords to get list of similar products on ebay.
6. Enter ebay.com.
7. Type the relevant search keyword in search bar. There are 60 products in one
ebay search result page. Increase it to 240 as needed by modifying "Items per page"
at bottom right of page.
8. In search results page filter by Show only "Sold Items" , Condition "New",
Buying format "Buy it now".
9. Remove "Completed items" check mark if it gets automatically selected.
10. Install Instant data scraper Chrome exctension (it should be pinned on
bookmarks bar).
11. Click Instant data scraper. Uncheck Infinite scroll if already checked. Start
infinite scroll to scrape many pages at once. Download XLSX file. Close Instant
data scraper.
12. Open Excel file and check if you are getting these three columns. If possible
get fourth column also for SKU.
a) Image Link column similiar to "s-item__image-wrapper src". Rename header to
"Image"
b) Title column similar to "s-item__title". Rename header to "Title"
c) Item Price similar to "s-item__price" or "POSITIVE" etc. Check ebay page to
ascertain correctly. Rename header to "Regular price"
d) SKU similar to "s-item__item-id" (If present). Rename header to "SKU"
13. Delete all other columns.
14. Add following columns
a) E column, name header as "Category". Add appropriate category name from ebay
into all cells. Also add your name for example "Drone accessories-Dipika" for
identification.
b) F column name header as ""Short_description"" and create short description
for each category using concatenate formula
c) G column name header as ""Description"" and create short description for each
category using concatenate formula
d) H, I column for tag. If there is just one tag for all products in the file
then this culumn is not needed."
15. Open VBA in Excel. VBA is used to process large excel file quickly. Sample VBA
codes are in folder. New ones as needed can be generated using chatgpt.
16. To add and run VBA code in Excel, follow these steps:
a. Open Excel.
b. Open (VBA) editor by pressing Alt + F11.
c. Click "Insert" > "Module" from the context menu. This will insert a new code
module into your workbook.
d. Paste your VBA code into the code window.
-----------------------------------------------------------------------------------
--
Code to remove "$" sign from all cells in culumn C and multiply the figure by 500.
-----------------------------------------------------------------------------------
--

Sub RemoveDollarSignAndMultiply()
Dim LastRow As Long
Dim i As Long
LastRow = ActiveSheet.Cells(Rows.Count, "C").End(xlUp).Row

For i = 1 To LastRow
Dim cellValue As String
cellValue = Cells(i, "C").Value
' Check if the cell value contains a "$"
If InStr(cellValue, "$") > 0 Then
' Remove the "$" and convert to a numeric value
cellValue = Replace(cellValue, "$", "")
cellValue = Val(cellValue)
' Multiply by 500
cellValue = cellValue * 500
' Put the modified value back in the cell
Cells(i, "C").Value = cellValue
End If
Next i
End Sub

--
e. Once you've pasted your code, you can run it by either pressing green play
button on top bar or pressing F5 on your keyboard and click run.
f. Save your workbook to keep the changes.
17. Generate from chatgpt a common short description and description for each
category.
18. Blend Title with AI genertaed description and short description so that it
becomes unique for each product. Use formula in excel. Check "Custom Excel formula
example" file attched to and modify it as per your file.
19. Check "Sample scraped list" file as to how the final result should look like.
20. Add tags in H and I columns
a. H column - "Gedescs" to indicate products have generic descriptions
b. I column - "Sct" to indicate products have scraped title
21. Delete rows completely which has blank cells e.g Image cell, title cell etc.
Make sure to select the whole row while deleting, not just the cell.
22. Check Title and remove any unwated characters like symbols etc.
23. Keep same headers for all files so that files can be merged later.
24. Try to scrape products simultaneously on multiple chrome tabs. Keep each
category separate.
25. When 10000 rows are done, send it via email. We will check and get back to you.

You might also like