470454788 发表于 2011-6-23 09:05:22

设置图像检查点时发现图像SRC为动态变化,如何解决

如题:
Action()
{

        web_url("xl7bho.ini",
                "URL=http://media.info.client.xunlei.com/xl7bho.ini",
                "Resource=1",
                "RecContentType=application/octet-stream",
                "Referer=",
                "Snapshot=t3.inf",
                LAST);

        lr_start_transaction("start");

        web_url("export",
                "URL=http://192.168.0.84:8399/arcgis/rest/services/World100/MapServer/export?bbox=-198.412420654297,-98.681381225586,206.660833740235,92.3090057373047",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=",
                "Snapshot=t4.inf",
                "Mode=HTML",
                LAST);


        web_image_check("web_image_check",
                "Src=http://192.168.0.84:8399/arcgis/server/arcgisoutput/_ags_map81055c179096422db7b0e422b48288ec.png",
                LAST);
        lr_end_transaction("start", LR_AUTO);


return 0;
}

发现每次访问图片的src标红的那段都是变化的如何解决?

talerance 发表于 2011-6-23 09:47:32

那是因为开发他们在做的时候每次都需要从数据库中重新取图片,所以每次都会获得一个新的地址,站在测试的角度是无法解决的。只能和开发沟通。
页: [1]
查看完整版本: 设置图像检查点时发现图像SRC为动态变化,如何解决