I’m trying to create automation to click on the website [https://seller.shopee.co.id/portal/product/new] and I need input on this xpath. But I’ve tried using the Selenium IDE extension and Xpath Finder, but I didn’t find /input in that section.
Can anyone provide a solution?
with xpath ex.
I tried adding /input after the xpath, but that didn’t work
input_element = WebDriverWait(driver, 10).until(
EC.element_to_be_clickable((By.XPATH, '/html/body/div[1]/div[2]/div/div/div/div/div/div[1]/section[3]/div/div[2]/div/div[1]/div[1]/div/div[2]/div[1]/div/div[2]/div/div/div[1]/div[2]/div/div/div/div[1]/div[1]/div[1]/div/input'))
)
input_element.click()
input_element.send_keys("red")