SoundCloud login problem with Selenium Chromedriver Python

752 Views Asked by At

I am trying to login in SoundCloud with Selenium Chromedriver Python.

But I am getting the following message while pressing the sign-in button.

Our robots think you are a robot.

Please check the attached image for more info.

enter image description here

I am using the following code in my chromedriver:

options = webdriver.ChromeOptions()
options.add_argument('--start-maximized')
options.add_argument("--ignore-certificate-error")
options.add_argument("--ignore-ssl-errors")
options.add_argument("--disable-dev-shm-usage")
options.add_argument("--disable-blink-features")
options.add_argument("--disable-blink-features=AutomationControlled")
options.add_argument("--disable-infobars")
options.add_argument("--remote-debugging-port=9222")
options.add_experimental_option('excludeSwitches', ['enable-logging'])
options.add_experimental_option("excludeSwitches", ["enable-automation"])
driver = webdriver.Chrome(executable_path=r'path\chromedriver.exe', options=options)

Can anyone tell me how to bypass this problem to login to SoundCloud?

1

There are 1 best solutions below

1
Louis_45 On

It could help when you do the input with ActionChains and type the username and password string character by character.