Selenium 与 ASP.Net 结合使用?
我所在的公司使用 ASP.Net 技术;如果用户界面是 DotNet 组件而不是 HTML 组件,我可以使用 selenium 工具吗?
My company for which i am an employee uses ASP.Net Technology; if the User interface is DotNet component instead of HTML COMPONENT, Can i use selenium tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Selenium 是一个浏览器自动化工具。这意味着您的应用程序必须在浏览器中运行,Selenium 才能实现自动化。您说您的用户界面是使用 ASP.NET 的 .NET 组件。如果您的意思是您的应用程序是使用 ASP.NET 构建的 Web 应用程序,它将 HTML 呈现给用户的浏览器,那么是的,您可以使用 Selenium 来测试它。如果您的应用程序是 Windows 窗体、Silverlight 或 Windows 演示框架 (WPF) 应用程序,则不能,您不能直接使用 Selenium 来自动导航应用程序。
Selenium is a browser automation tool. This means that your application has to be run in a browser for Selenium to automate it. You say that your user interface is a .NET component using ASP.NET. If you mean that your application is a web application built using ASP.NET which renders HTML to a user's browser, then yes, you can use Selenium to test it. If your application is a Windows Forms, Silverlight, or Windows Presentation Framework (WPF) application, then no, you can't use Selenium directly to automate navigation of your application.