Hello,
I'm a C# developer, but I'm a complete rookie in the realm of bots...
I would like to develop a bot that would be able to:
1. Open a new chrome window, navigate to a site, authenticate with a user+pass combination, and save this session. It should be able to do this 25 times (for example), and this would end up with 25 saved sessions, each with its own set of cookies/cache, and no link between the instances.
2. I would like to "recall" the saved sessions, so if I navigate back to the site, it should be logged in with the user+pass that was used. Now the bot should be able to do certain things, like scraping some data, posting comments etc.
3. The bot should be able to use a proxy for each chrome instance.
Now I know that there are a gazillion bot programmers on this forum, who would gladly do something similar for me, but I want to build it myself, otherwise I wouldn't learn. I also want to know the code inside-out, so if it's needed, I can quickly patch it.
I also need this bot to be secure, meaning that the site that I would use it one, should not see these bot activities (anti-fingerprinting).
Do you think this could be achieved in C# + Selenium?
Are there any github projects similar to this, that would cover some of the points?
I'm a C# developer, but I'm a complete rookie in the realm of bots...
I would like to develop a bot that would be able to:
1. Open a new chrome window, navigate to a site, authenticate with a user+pass combination, and save this session. It should be able to do this 25 times (for example), and this would end up with 25 saved sessions, each with its own set of cookies/cache, and no link between the instances.
2. I would like to "recall" the saved sessions, so if I navigate back to the site, it should be logged in with the user+pass that was used. Now the bot should be able to do certain things, like scraping some data, posting comments etc.
3. The bot should be able to use a proxy for each chrome instance.
Now I know that there are a gazillion bot programmers on this forum, who would gladly do something similar for me, but I want to build it myself, otherwise I wouldn't learn. I also want to know the code inside-out, so if it's needed, I can quickly patch it.
I also need this bot to be secure, meaning that the site that I would use it one, should not see these bot activities (anti-fingerprinting).
Do you think this could be achieved in C# + Selenium?
Are there any github projects similar to this, that would cover some of the points?