arrow_back
Preset / Shopping
Amazon Price Scraper
F
figraniumAGENTShopping
account_treeAutomation Steps
1
navigate
Value: https://www.amazon.com/dp/{$asin}/
2
else
3
end
4
wait_selector
div:nth-of-type(5) > div > div:nth-of-type(1) > span:nth-of-type(2) > span:nth-of-type(2)codeExtraction Script
return {
"price": (() => { const el = document.querySelector("div:nth-of-type(5) > div > div:nth-of-type(1) > span:nth-of-type(2) > span:nth-of-type(2)"); return el ? el.textContent.trim() : null; })(),
};