You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got an error when I targeted the search tag, then I fixed it to add the below line of code with searchbox :
second_child_div = wait.until(EC.element_to_be_clickable((By.XPATH, '//*[@Class="x1iyjqo2 xh8yej3"]/div[2]')))
second_child_div.click()
You did it manually so
I got an error when I targeted the search tag, then I fixed it to add the below line of code with searchbox :
second_child_div = wait.until(EC.element_to_be_clickable((By.XPATH, '//*[@Class="x1iyjqo2 xh8yej3"]/div[2]')))
second_child_div.click()
You did it manually so
searchbox = wait.until(EC.element_to_be_clickable((By.XPATH, "//input[@Placeholder='Search']")))
searchbox.clear()
The text was updated successfully, but these errors were encountered: