One very silly mistake I found was that in the walkthrough guide, before adding the items to the queue if condition is given as:
row(“Type”).Equals(“WI4”) and row(“Status”).Equals(“Open”)
I checked the output after scraping the page, and it was in below format:
Actions,WIID,Description,Type,Status,Date
,771512,Research Client Check Copy,WI2,0,2017-10-23
Hence, applying the above if filter with Status with “Open” wont add anything to your queue. So I modified the if filter as below:
row(“Type”).Equals(“WI4”) and row(“Status”).Equals(“0”)
After saving and running it again, 17 items got added in my queue. Hurrayyy!!