Scraping help with Python/JS

bladee4r

Regular Member
Joined
May 3, 2021
Messages
390
Reaction score
360
I just need to run one script on a website to fill a text box. Similar to if you went into ctrl + shift + i, then to browser console and pasted a Javascript.

Using python and no selenium. Is there a way to run console javascript similar to how you can do it in selenium? Tried python-html library, doesn't seem to work.
 
If you would like to try something different you could try zennoposter...
You don't need to code anything, but you can do any scraping job!
 
I just need to run one script on a website to fill a text box. Similar to if you went into ctrl + shift + i, then to browser console and pasted a Javascript.

Using python and no selenium. Is there a way to run console javascript similar to how you can do it in selenium? Tried python-html library, doesn't seem to work.
You probably need the following, if I understood you correctly. Just to be clear, you don’t need a separate plugin for this atall. Selenium provides the api out of the box.
Code:
 https://stackoverflow.com/a/7794217
 
Back
Top