I am trying to do something so that if it cannot find this click on this.
I receive the TypeError: find_element_by_xpath() takes 2 positional arguments but 3 were given error when trying this
here is my code
import time
OOS = '//*[@id="notifyMe"]'
in_stock = '//*[@id="viewport"]/div[5]/div/div[2]/div[3]/div[1]/div/div[3]/div[1]/div[2]/button'
for x in range(4):
web = webdriver.Chrome()
web.get('https://www.target.com/p/minecraft-bee-pillow-buddy/-/A-79337175')
time.sleep(2)
instock_button = web.find_element_by_xpath(OOS,in_stock ).click()
time.sleep(5)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…