我对编码的ui自动化有以下问题: 1.在执行自动化脚本期间,Web应用程序的响应时间会增加。2.即使是控件也变得不可见,但执行仍在继续。
如果我手动打开应用程序,它很快就会打开。配置: Windows server 2012 R2、IE11、Visual studio 2015、带有c#的编码ui。
有人知道怎么修吗?提前谢谢。
在我的项目中,我使用了'discard‘调用来执行自定义的模板测试,它试图只在模板纹理定义的指定区域上绘制东西。以下是片段着色器中的代码:
//get the stencil value from a texture
float value=texture2D( stencilTexture, gl_FragCoord.xy/1024.0).x;
//check if value equals the desired value, if not draw nothing
if(abs(value-desiredValue)>0.1)
{
discard;
}
这段代码可以