Telerik Test Studio - 输入文本立即消失

时间:2015-12-09 19:37:24

标签: selenium-webdriver automation telerik-test-studio

在我的网页测试工作室自动化测试用例中,我有一个测试步骤,只需将一些文本输入到文本框中即可。问题是文本在输入后立即消失。

当我在C#中使用Selenium Webdriver时会出现同样的情况。

你以前见过这个吗?请给我一些帮助。

2 个答案:

答案 0 :(得分:0)

In selenium use IJavaScriptExecutor class to set Text box value .If it doesn't work try clicking an element out of the text box after entering text box value.

答案 1 :(得分:0)

在Test Studio中尝试关注文本框元素(可以通过单击元素来实现)并使用以下代码键入文本:

Manager.Desktop.KeyBoard.TypeText("your text here", 50);