Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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)



与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

In this line:

instock_button = web.find_element_by_xpath(OOS,in_stock ).click()

in_stock is an addition parameter to find_element_by_xpath() function. Remove the in_stock parameter and the exception will be gone away.

instock_button = web.find_element_by_xpath(OOS).click()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...