Unable to select the any particular from dropdown tried all option _Able to click but after then not working

Viewed 18

drop_down1 = driver.find_element(by=By.XPATH, value="/html/body/main/div[2]/form/div[4]/div1/div/div1") drop_down1.click() time.sleep(3) drop_down2 = driver.find_element(by=By.XPATH, value="/html/body/main/div[2]/form/div[4]/div1/select/option[2]") drop_down2.click()

Another option

grade_dropdown = Select(driver.find_element(by=By.XPATH, value="/html/body/main/div[2]/form/div[4]/div1/select"))

Another option

enter image description heregrade_dropdown = Select(driver.find_element(by=By.ID, value="Choose a delivery method")) grade_dropdown.select_by_visible_text("Pdf by email")

0 Answers
Related