【目的】
频繁刷新某一浏览器页面,小测试一下加载性能,或者打开的文件是否及时关闭,会不会导致服务器奔溃
【小工具】
新建txt,输入以下内容,并保存为html的格式,然后在浏览器中打开,则会定时刷新指定的URL
<html> <head><meta http-equiv="refresh" content="1"></head> <frameset> <frame src="www.baidu.com" name="iframe"> </frameset></frameset> </html>
content="1" //刷新间隔为1秒,可以设置为需要的时间间隔
src="www.baidu.com" //被测试的目的URL,修改为需要测试的URL