↧
Answer by bharatk for how to scrape multilevel drop down list using selenium...
Try this:Select multilevel dependent drop-down menu optionselectYear = Select(driver.find_element_by_id("icm-years-select"))for yearOption in selectYear.options: yearText = yearOption.text...
View Articlehow to scrape multilevel drop down list using selenium python [dependent...
i want to extract some data from a multilevel selection dependent drop down menu can any one tell me how can i select and click items using selenium so sub drop downs may be updated automatically!you...
View Article