I am almost there with my project that involves extracting data from eBay.
I have almost everything I need working now except for getting the 'description' from within the iframe inside of a listing.
As you probably know, the iframe on eBay is on another domain and I have the exact URL of the iframe for the specific item (which is different for every item scraped) inside of a Text as collected when scraping the listing page.
I am wondering how to tell the browser to navigate to the URL of the iframe from the URL collected inside of the Text, rather than needing to enter the exact URL into the Browser.Load [url]?
I currently have:
Code: Select all
iframe_link
Select.Iframe
Text.Iframe_url
And I have tried:
Code: Select all
child
Select.Iframe
Text.Iframe_url
Browser.Navigate
extract
itemdescription
Select.Description_raw
How would I get the browser to now visit this specific URL to get the data inside of it?
If I enter a specific/fixed URL into the Browser.Load [url] then it works, however it needs to pull the unique URL from each listing for it to work correctly. So the only thing that is needed is how to navigate to the iframe URL.
I have been trying a few different methods including using a Script to use inside of the Browser.Load [url], though with my limited understanding the result is seemingly always empty.
I have also tried to copy the method that tells the browser to navigate the item title, to load the item page, however it does not work, probably as the URL in this case is not a 'link' and is just 'text'?
Any help would be appreciated.
Thank you.