I have been working on learning UiPath by trying to scrap an ecommerce website.
With some generous help from @carmen, who helped with 2 of the selectors and other information, things worked for a few days (previous post: [SOLVED] How to set selectors for getting data from products details pages).
But while running the robot today I discovered that the website changed the page structure for some products at the section containing the detailed description of each product, so the previous selectors don’t work anymore.
So I try to scrape all the data from the section “Descriere” of each product from each product page taken from this list: Laptopuri. Comanda Online - eMAG.ro
I think this element is stable and contains the data I’m looking for (the product description): <div class="collapse-offset in" id="description-body" style="overflow-y: hidden;" uipath_custom_id="16">
And it is the first DIV inside of: <div class="product-page-description-text" uipath_custom_id="5">
But UiPath doesn’t identify it automatically (what it gives me doesn’t work for all pages), and the manual solutions I tried don’t work either (I’m a beginner).
And all the tutorials I’ve seen so far only show easy cases with automatic selectors working immediately or only needing some very simple customization like replacing part of the page title or another element’s text with *.
What is a working selector for my pages?
Thank you for any help!