我在python中有一个selenium脚本,我想这样做(伪代码)
open www.example.com
while traffic usage hasn't been 0 during the last 3 seconds:
wait 3 seconds
print "everything is loaded"
Selenium做得非常好,但仅限于页面的基本元素(例如,它不等待闪存) 无论如何,只要有东西加载,我希望我的脚本留在页面上。 最好只监控页面的流量,但我可以假设没有其他东西在我的计算机上使用网络。
我看到三种方法:
这些解决方案都不能完全满足我的需求,你有什么想法吗?