I have a webpage and I want to interact via JavaScript with it (to get data and to perform input events) that means I want to load the webpage in background.
In iOS i could do this easily with WebKit
and a webView + the evaluateJavaScript
Method, but since I want to run this on Apple Watch and the fact that there isn't a WebKit framework for watchOS, I am looking for another way to do this.
Any ideas?