动态网页抓取

我试图抓取这个页面(“ http://www.arohan.in/branch-locator.php ”),当我选择州和城市时,将显示一个地址,我必须写下州,城市和 csv/excel 文件中的地址。我能够到达这一步,现在我被卡住了。

这是我的代码:

from selenium import webdriver  

from selenium.webdriver.support.ui import WebDriverWait


chrome_path=  r"C:\Users\IBM_ADMIN\Downloads\chromedriver_win32\chromedriver.exe"

driver =webdriver.Chrome(chrome_path)

driver.get("http://www.arohan.in/branch-locator.php")

select = Select(driver.find_element_by_name('state'))

select.select_by_visible_text('Bihar')

drop = Select(driver.find_element_by_name('branch'))

city_option = WebDriverWait(driver, 5).until(lambda x: x.find_element_by_xpath("//select[@id='city1']/option[text()='Gaya']"))

city_option.click()


潇潇雨雨
浏览 153回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python