[파이썬 응용] 9탄 Selenium & Beautifulsoup 업무 자동화(매크로) : select 다루기 & ComboBox다루기
·
🐍 Python/Application
안녕하세요 오늘은 ComboBox와 select에 대해 이야기하겠습니다. 웹 크롤링을 하다 보면 위와 같은 콤보박스를 마주치게 됩니다. from selenium.webdriver.support.ui import Select select = Select(driver.find_element_by_id('locale_switch')) select.select_by_index(0) select.select_by_index(1) select.select_by_index(2)
18진수
Embeded-Korea