为了账号安全,请及时绑定邮箱和手机立即绑定

动态网页抓取

动态网页抓取

潇潇雨雨 2021-06-02 21:28:18
我试图抓取这个页面(“ http://www.arohan.in/branch-locator.php ”),当我选择州和城市时,将显示一个地址,我必须写下州,城市和 csv/excel 文件中的地址。我能够到达这一步,现在我被卡住了。这是我的代码:from selenium import webdriver  from selenium.webdriver.support.ui import WebDriverWaitchrome_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()
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 152 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信