And as expected, the built in html node is not able to extract the data because the page uses Angular to deliver those items to the user dynamically.
[{"id":"7efa14c7.bc1cac","type":"inject","z":"63281c77.40a064","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":120,"y":1000,"wires":[["d77cae08.8c25d"]]},{"id":"adb70203.b0191","type":"debug","z":"63281c77.40a064","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","x":710,"y":1000,"wires":[]},{"id":"d77cae08.8c25d","type":"http request","z":"63281c77.40a064","name":"","method":"GET","ret":"txt","paytoqs":false,"url":"https://www.pwc.com/gx/en/industries/tmt/media.html","tls":"","proxy":"","authType":"","x":290,"y":1000,"wires":[["b8429ad4.e11d78"]]},{"id":"b8429ad4.e11d78","type":"html","z":"63281c77.40a064","name":"","property":"payload","outproperty":"payload","tag":".collectionv2__content","ret":"html","as":"single","x":500,"y":1000,"wires":[["adb70203.b0191"]]}]
So you are going to need something more comprehensive such as:
Here is an example that is getting closer - BUT notice how complex this single page is! If all of your sites are this complex, it will take quite some time to get your data. However, you can see that Node-RED can do all of this and it can handle the complexity.
[{"id":"b0c2e02a.20c2c","type":"nbrowser","z":"63281c77.40a064","name":"","methods":[{"name":"gotoURL","func":"goto","params":[{"type":"str","value":"https://www.pwc.com/gx/en/industries/tmt/media.html","typeDefault":"str"}]},{"name":"getHTML","func":"getHTML","params":[{"type":"str","value":".collectionv2__content","typeDefault":"str"},{"type":"output","value":1,"typeDefault":"output"}]}],"prop":"nbrowser","propout":"payload","object":"msg","objectout":"msg","close":true,"show":true,"ssl":false,"outputs":1,"x":280,"y":1080,"wires":[["9f2d3650.01e398"]]},{"id":"85a40495.f8cd38","type":"inject","z":"63281c77.40a064","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":120,"y":1080,"wires":[["b0c2e02a.20c2c"]]},{"id":"16be2e09.5b70a2","type":"debug","z":"63281c77.40a064","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","x":710,"y":1080,"wires":[]},{"id":"9f2d3650.01e398","type":"html","z":"63281c77.40a064","name":"","property":"payload","outproperty":"payload","tag":"*","ret":"html","as":"single","x":450,"y":1080,"wires":[["16be2e09.5b70a2"]]}]