How to select a value from drop down using selenium webdriver with python
In this video, I have taught how to select a value from the drop down using selenium webdriver with python.
There are several ways and out of those two of the commonly used ways are using Select class and ActionChains. Select has some limitations and won't work in all cases so it's better to use ActionChains.
In this video, I've used an example from Aliexpress and selecting a value from state dropdown. I have faced issue selecting a value for state dropdown using Select method (because html of dropdown doesn't have select and option tags for the values of the dropdown and in that case it wasn't working). Based on my experience and avoiding conflicts/issues it's best to use ActionChains. You can see the complete video to get an idea of how to use it while writing an automation script.
For reference, pasting the code here as well:
select_state = browser.find_element_by_xpath("/html/body/div[5]/div/div/ul/li[@title='Kuala Lumpur']") // to locate the element
actions = ActionChains(browser) // define this in order to make it work
actions.move_to_element(select_state).perform() // this will locate the value from backend and show it visibly on frontend
actions.click().perform() // this click is to select the required value
Feel free to post any questions in the comments section or share your feedback.
If you like this video then subscribe my channel for more videos on commonly faced issues in selenium and how to resolve them.
Thank you!
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «How to select a value from drop down using selenium webdriver with python», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.