Hi I continue to get the error, ElementClickInterceptedException: Message: Element is not clickable at point (x,y) because another element obscures it
I have tried many work arounds including a time delay and nothing seems to work. i tried some of the solutions here: Selenium Web Driver & Java. Element is not clickable at point (x, y). Other element would receive the click
then I get a new error, "cannot scroll down"
Appreciate any help. Here is my code:
from selenium import webdriver
import time
browser = webdriver.Firefox()
browser.get('https://keepa.com/#!')
browser.implicitly_wait(2)
#login to site
isbn = browser.find_element_by_id('panelUserRegisterLogin').click()
isbn = browser.find_element_by_id('username')
isbn.send_keys('xxxx')
isbn = browser.find_element_by_id('password')
isbn.send_keys('xxxx')
isbn = browser.find_element_by_id('submitLogin').click()
#open search bar and lookup asin
isbn = browser.find_element_by_id('menuSearch').click()
isbn = browser.find_element_by_id('searchInput')
isbn.send_keys(xxxx)
isbn.submit()