website (https://www.nike.com/login) is detecting selenium

4.7k Views Asked by At

I'm trying to login to Nike.com using selenium but it says "We are unable to connect to our servers right now. Please try again later. Post Request Login Blocked". I only get this error when I try to login using selenium. When I login manually it gives no error. Currently I'm using this code,

chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-blink-features")
chrome_options.add_argument("--disable-blink-features=AutomationControlled")
driver = webdriver.Chrome(options = chrome_options)
driver.get("https://www.nike.com/login")
email = driver.find_element_by_xpath("/html/body/div[2]/div[3]/div[6]/form/div[2]/input")
email.send_keys("Email Here")
password = driver.find_element_by_xpath("/html/body/div[2]/div[3]/div[6]/form/div[3]/input")
password.send_keys("Password Here")
button = driver.find_element_by_xpath("/html/body/div[2]/div[3]/div[6]/form/div[6]/input")
button.click()

Can anyone help me?

EDIT # 01

Issue is not with the code. Code is working fine. Issue is that Nike is detecting the bot and I want to avoid that.

4

There are 4 best solutions below

7
On

your code ran fine on my machine (although I use Java + Selenium, but that doesn't matter I believe). Now coming to your question:

  1. You should try deleting your cookies at first by using the snippet below in some @BeforeTest section of execution of a test case.

    driver.manage().deleteAllCookies();

  2. Next thing, you should update your chromedriver version just for a recheck.

  3. Specifically put a wait before button click.

1
On

To login in nike.com Induce WebDriverWait() and wait for element_to_be_clickable() and following locator strategy.

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

driver = webdriver.Chrome()
driver.get("https://www.nike.com/login")
WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.NAME,"emailAddress"))).send_keys("Abdul Haseeb")
WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.NAME,"password"))).send_keys("Abdul Haseeb")
WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//input[@value='SIGN IN']"))).click()

Browser snapshot.

enter image description here

11
On

Hi Nike site not allow to automate their websites by using tools that is reason you cant automate by selenium

3
On

You cant do that with selenium but try opening the site on your machine and doing what you need with "webbrowser" here. If this doesn't work tell me.