本文介绍了模拟网页按键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有可能为C#应用程序来模拟一个网页按键?
为例,有jsp页面,我需要输入文字资料,并点击提交页面上的按钮。
Is it possible for C# app to simulate keystrokes on a web Page?for example, there is jsp page and I need input text data and click the submit button on that page.
推荐答案
有很多不同的选择:
- Selenium
- WaitN
是提供功能性Web测试的开源项目。您可以使用测试框架NUnit的一样,的xUnit,MbUnit的播放你的测试。
are open source projects that provide functional web testing. You can use testing frameworks like NUnit, xUnit, mbUnit to playback your tests.
这篇关于模拟网页按键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!