IE11中的TestComplete(Web模块).keys()方法缺少一些字母

时间:2015-08-03 11:08:51

标签: internet-explorer jscript testcomplete

我遇到TestComplete 10.6和IE11的问题。在文本区域输入文本时,IE11缺少一些字母。

测试的简单示例:

function Test1()

    var textarea;
    Browsers.Item(btIexplorer).Navigate("http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_textarea");

    textarea = Aliases.browser.pageWwwW3schoolsComTagsTryitAspF.frameIframeresult.textarea;

    textarea.Click(264, 54);
    textarea.Keys("[Enter]the quick brown fox jumps over the lazy dog");
    textarea.Keys("[Enter]the quick brown fox jumps over the lazy dog");
}

结果是随机遗漏的字母。 e.g:

the quick brown fox jumps over thlazy dg
the quick brown fox jmps over the lazy dog

TestComplete键按下延迟,ms = 250

我在两个不同的VM上检查了它们,它们产生了同样的问题。 在测试之前,我确实遵循了Smartbears IE文档到prepare the browser

我添加了评论here但到目前为止没有任何反馈意见。

如果您得到的结果与我的TestComplete配置有关,请告诉我。

0 个答案:

没有答案