使用 python 抓取动态页面的 Selenium webdriver 找不到元素

Selenium webdriver with python to scrape dynamic page cannot find element

因此,关于 Whosebug 上的动态内容抓取,有很多问题被问到,我仔细研究了所有这些问题,但建议的所有解决方案都不适用于以下问题:

上下文:

问题:

我无法访问此页面上的任何 DOM 元素。请注意,如果我能得到一些关于如何访问搜索栏和搜索按钮的提示,那将是一个很好的开始。 See page to scrape 我最终想要的是浏览地址列表,启动搜索,然后复制屏幕右侧显示的信息。

我试过以下方法:

问题

您可以使用此 url http://50.17.237.182/PIM/ 获取来源:

In [73]: from selenium import webdriver


In [74]: dr = webdriver.PhantomJS()

In [75]: dr.get("http://50.17.237.182/PIM/")

In [76]: print(dr.find_element_by_id("addressInput"))
<selenium.webdriver.remote.webelement.WebElement object at 0x7f4d21c80950>

如果您查看返回的源,则有一个带有该 src 的框架属性 url:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
<html>

<head>
  <title>San Francisco Property Information Map </title>
  <META name="description" content="Public access to useful property information and resources at the click of a mouse"><META name="keywords" content="san francisco, property, information, map, public, zoning, preservation, projects, permits, complaints, appeals">
</head>
<frameset rows="100%,*" border="0">
  <frame src="http://50.17.237.182/PIM" frameborder="0" />
  <frame frameborder="0" noresize />
</frameset>

<!-- pageok -->
<!-- 02 -->
<!-- -->
</html>

感谢@Alecxe,使用最简单的方法dr.switch_to.frame(0):

In [77]: dr = webdriver.PhantomJS()

In [78]: dr.get("http://propertymap.sfplanning.org/")

In [79]:  dr.switch_to.frame(0)  

In [80]: print(dr.find_element_by_id("addressInput"))
<selenium.webdriver.remote.webelement.WebElement object at 0x7f4d21c80190>

如果您在浏览器中访问 http://50.17.237.182/PIM/,您将看到与 propertymap.sfplanning.org/ 完全相同的内容,唯一的区别是您可以完全访问使用前者的元素。

如果你想输入一个值然后点击搜索框,它是这样的:

from selenium import webdriver


dr = webdriver.PhantomJS()
dr.get("http://propertymap.sfplanning.org/")

dr.switch_to.frame(0)

dr.find_element_by_id("addressInput").send_keys("whatever")
dr.find_element_by_xpath("//input[@title='Search button']").click()

但是如果您想提取数据,您可能会发现使用 url 进行查询是一个更简单的选项,您会从查询中得到一些 json 的结果。