Getting error of
selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable
(or)
selenium.common.exceptions.WebDriverException: Message: chrome not reachable for the search query code lines.
I believe that search field is hidden in the website. Help with the code.
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.common.keys import Keys
#Step: Create new browsing session
options = Options()
options.add_argument("start-maximized")
browser = webdriver.Chrome("C:/Users/ashita.gadagotti/Downloads/chromedriver_win32/chromedriver.exe",chrome_options=options)
#Search Query
browser.get("https://equiniti-kyc.com")
search_input = browser.findElement(By.className("primary-navigation__search-input").isEnabled()
search_input.send_keys('ISO')
search_input.submit()