I have an app that needs to scrape some data from websites which contain JavaScript. With NodeJS, this is easy with puppeteer or playwright. With React Native, I can use fetch or axios to request the html of the page, but the Javascript will not be executed.
I have learned of a npm package which can allow me to use NodeJS with React Native on Android or iOS (https://github.com/JaneaSystems/nodejs-mobile-react-native). But since puppeteer or playwright normally automate a desktop version of Chrome, is there any way to achieve similar functionality on mobile devices?