pythonselenium获取html标签内容_python selenium 如何获取网页页面所有可以点击的元素?...

@wow2828:

1.触发所有元素的click事件,如你所说用递归

2.注册事件通知,beforeNavigateTo 记录所有http nav地址到数据库,状态,关系等

http://www.seleniumeasy.com/selenium-tutorials/webdriver-event-listener-example

3.设法stop当前页面的nav行为。

https://stackoverflow.com/questions/33675969/stop-page-load-during-navigate-url-in-selenium

https://sqa.stackexchange.com/questions/5663/is-it-possible-to-stop-page-loading-on-the-browser-using-selenium-web-driver

https://stackoverflow.com/questions/5453423/how-to-stop-the-page-loading-in-firefox-programmatically

4.重复上述行为

5.数据库标记http nav地址是否已执行过

类似于页面爬虫做抓取,所有页面所有链接,所有nav执行完成后。就知道那些nav,或者click产生的nav是不是死链了

你可能感兴趣的:(pythonselenium获取html标签内容_python selenium 如何获取网页页面所有可以点击的元素?...)