I am new in Selenium, here is the error that i showed up
My code:
 def job_search(self):
        """This function goes to the 'Jobs' section and looks for all the jobs that match the keywords and location"""
    
        # Go to the LinkedIn job search page
        self.driver.get("https://www.linkedin.com/jobs")
    
        # Wait for the job search page to load fully
        WebDriverWait(self.driver, 15).until(EC.presence_of_element_located((By.CSS_SELECTOR, ".jobs-search-box__text-input[aria-label='Search by title, skill, or company']")))
    
        # Search based on keywords and location
        search_keywords = self.driver.find_element(By.CSS_SELECTOR, ".jobs-search-box__text-input[aria-label='City, state, or zip code']")
        search_keywords.clear()
        search_keywords.send_keys(self.keywords)
    
        # Wait for the search location input field to be interactable
        search_location = WebDriverWait(self.driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR, ".jobs-search-box__input--location")))
        search_location.clear()
        search_location.send_keys(self.location)
        search_location.send_keys(Keys.RETURN)
Here is the error that i got
ElementNotInteractableException: element not interactable
  (Session info: chrome=114.0.5735.134)
I want to interact with "Search bar" in LinkedIN, but unfortunately the error welcomed me
 
    
