Which Programming Language is Good to Make an Account Creator?

Qoins

Regular Member
Joined
Aug 13, 2015
Messages
299
Reaction score
82
Hey, So I have a little knowledge in almost all the basic programming languages. I try to learn and automate stuff as I need. Been a couple of days I need to automate some stuff but Google being a b. I spent quite sometime doing python and selenium to sign up but when I got to the verification stage, I need to be able to login on gmail, and selenium as it turns out doesn't work on gmail anymore. It says the browser is not supported. I can't use any other email platform so I figured instead of doing selenium in headless mose I could just use something like oyautogui or robotjs to automate it but that would mean I cannot do other work simultaneously. Is there any alternative for this? I would probably end up running it on VPS but wanted to know if the plan would work out. Any other language or method that you know of to get rid of the browser not supported error perhaps?
 
Hey, So I have a little knowledge in almost all the basic programming languages. I try to learn and automate stuff as I need. Been a couple of days I need to automate some stuff but Google being a b. I spent quite sometime doing python and selenium to sign up but when I got to the verification stage, I need to be able to login on gmail, and selenium as it turns out doesn't work on gmail anymore. It says the browser is not supported. I can't use any other email platform so I figured instead of doing selenium in headless mose I could just use something like oyautogui or robotjs to automate it but that would mean I cannot do other work simultaneously. Is there any alternative for this? I would probably end up running it on VPS but wanted to know if the plan would work out. Any other language or method that you know of to get rid of the browser not supported error perhaps?


Your on the correct path using python, I would recommend either python or C# for your automation coding. If your having trouble with your browser being detected, then take a look at this article below for some automation stealth tips that work for selenium.

Code:
https://piprogramming.org/articles/How-to-make-Selenium-undetectable-and-stealth--7-Ways-to-hide-your-Bot-Automation-from-Detection-0000000017.html
 
Your on the correct path using python, I would recommend either python or C# for your automation coding. If your having trouble with your browser being detected, then take a look at this article below for some automation stealth tips that work for selenium.

Code:
https://piprogramming.org/articles/How-to-make-Selenium-undetectable-and-stealth--7-Ways-to-hide-your-Bot-Automation-from-Detection-0000000017.html
Thanks, the tips does look helpful. Will give them all ago.

Edit- Unfortunately none of the 10 methods work for gmail. Will try giving C# a go.
 
Last edited:
I am guessing it is the selenium browser that is giving the troubles. Probably need to setup the script on RDP and controlling mouse and keyboard inputs directly. I am not sure how I would do it multiple times using inputs from excel in that case. Like taking data like email and password from excel. Once done then move to new row.
 
I am guessing it is the selenium browser that is giving the troubles. Probably need to setup the script on RDP and controlling mouse and keyboard inputs directly. I am not sure how I would do it multiple times using inputs from excel in that case. Like taking data like email and password from excel. Once done then move to new row.


Hear are some chrome options that may be helpful.

Code:
options_list = [f'--user-data-dir={profile_path}',
user_agent,
# chrome is being automated by driver
'"excludeSwitches", ["enable-automation"]',
'disable-notifications',
'disable-infobars',
'--disable-blink-features=AutomationControlled',
'--disable-blink-featuares',
'start_maximized',
'-disable-webrtc-hw-decoding',
'-disable-webrtc-hw-encoding']
 
selenium as it turns out doesn't work on gmail anymore.

You need to turn on "Less Secure Apps" in your g accounts in order to accept Selenium-powered browsers.
 
Use IMAP/POP to read the emails from gmail.
As for the languages, you can pretty much use any programming language that can make HTTP requests. A lot of people go with Python for its simplicity but I heard a lot of good stuff about C#.
 
Back
Top