DRAG DROP A company publishes a list of contacts each day as an HTML table on a web page. The company has a customer relationship management (CRM) application that runs on employee desktop devices. You need to implement an RPA solution that reads data from the HTML table and create records in the CRM application. Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
This one was in my exam last year, and the steps were the same. Go with: Launch a new web browser instance, then Extract data from web page, next Run application for the CRM, finally For each loop to write data. Order matters since you can’t get table data before the browser is open. Pretty sure this is it but let me know if you think differently.
Yeah, the usual order here for RPA: first open the browser, then extract data using the extract web data action (not get details), run the CRM app and finally loop through your extracted list to push records in. Pretty standard process, but open to other approaches if someone made it work differently.
