Skip to content Skip to sidebar Skip to footer

Element Changes From Display: None To Display:block Selenium Python

I am trying to fill a form online using selenium and at some point I have to fill a date. I can't use send_keys() since it is not allowed by the page. Instead, when I click on the

Solution 1:

The desired element is an dynamic element so while selecting the Month you have to induce WebDriverWait for the element_to_be_clickable() and you can use either of the following Locator Strategies:

  • Using XPATH:

    dateWindow = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div[9]/div[2]/table")))
    rows = dateWindow.find_elements_by_tag_name("tr")
    rows[1].find_element_by_xpath('//span[text()="%s"]' % str_month).click()
    
  • Note : You have to add the following imports :

    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.common.by import By
    from selenium.webdriver.support import expected_conditions as EC
    

Post a Comment for "Element Changes From Display: None To Display:block Selenium Python"