I wrote a JavaScript program that automates a process on a someone else's website, I run it on Chrome console and it works fine. I would like to do the same on my phone, but chrome mobile doesn't have console, any ideas?
So, I am NOT looking to debug or test the site or the script on a mobile environment, I actually need to run the script on a mobile phone rather than a PC.
I need to get the document object of the loaded page to get elements by ids and classes, and call click on them.
Is there a way of doing this?
ANSWER!!
As mentioned in the answer of the bookmark question above, I could run my JavaScript code on a mobile phone browser doing the same thing. The only issue I have is that the browser removes the JavaScript: part of the code at the begining, and I have to scroll all the way to the front to type it Thanks all