I wrote a python project which visits a random webpage (generic solution), renders JS code and searches for any input fields, writes some text and submits it.
Now I did that using selenium library but after reading this:
https://stackoverflow.com/a/50612469/21024824
I feel that I've made the wrong choice because I prefer not to use external browsers at all. Am I right?
I read that splash and requests-html do rendering and user-interaction tasks.
I'm asking this question because if my above claim is right and there is no need for selenium then I need to rewrite my whole project...