Not many people around here use Python as a programming language, which is ok.
Maybe I need to attack this differently.
To find something on Google, you need to formulate your question with the right keywords and you will probably hit what you are looking for. As for now, I am not finding what I'm looking for.
Let me explain on what I want to do.
I want to run on-demand (not always, not automatically) a script that will perform a few clicks on a webpage.
I tried Python with Selenium and the issue is that myfitnesspal.com sees me as a Robot when I run the script using either Firefox or Chrome. I tried to click the human box but it keeps looping. I cannot seem to be able to go around that.
I figured out the queries that I wanted to run in Javascript and added .click() in the developer console. That works but it's 1 at the time. I cannot run the 3 queries on the page as the page is reloaded after each .click(). So, copy-paste query 1, run, wait, copy-paste query 2, run, wait, and then query 3.
There must be a way or widget, or app or something else that I can input those commands in a loop or not so that it runs command 1, reload, command 2, reload, and command 3.
I tried snippets and I have the same issue as the console. The only plus with the snippet is that I can do Command1, Command2, and Command 3 and run them one after another. However, that's not automated to me.
So, since Selenium sees me as a robot and I cannot seem to be able to disable that, what else is out there? I don't need to enter data, just click on specific links on a website. Does someone use something that allows you to navigate multiple pages with automated clicks?
Maybe I need to attack this differently.
To find something on Google, you need to formulate your question with the right keywords and you will probably hit what you are looking for. As for now, I am not finding what I'm looking for.
Let me explain on what I want to do.
I want to run on-demand (not always, not automatically) a script that will perform a few clicks on a webpage.
I tried Python with Selenium and the issue is that myfitnesspal.com sees me as a Robot when I run the script using either Firefox or Chrome. I tried to click the human box but it keeps looping. I cannot seem to be able to go around that.
I figured out the queries that I wanted to run in Javascript and added .click() in the developer console. That works but it's 1 at the time. I cannot run the 3 queries on the page as the page is reloaded after each .click(). So, copy-paste query 1, run, wait, copy-paste query 2, run, wait, and then query 3.
There must be a way or widget, or app or something else that I can input those commands in a loop or not so that it runs command 1, reload, command 2, reload, and command 3.
I tried snippets and I have the same issue as the console. The only plus with the snippet is that I can do Command1, Command2, and Command 3 and run them one after another. However, that's not automated to me.
So, since Selenium sees me as a robot and I cannot seem to be able to disable that, what else is out there? I don't need to enter data, just click on specific links on a website. Does someone use something that allows you to navigate multiple pages with automated clicks?