Reputation: 1471
I want to create a JSP project which is possible to run Selenium test. I am not sure it is possible or not. Any one has any idea about this?
Upvotes: 2
Views: 1448
Reputation: 4605
Yes, you can use selenium to test a page produced by a jsp just like any other web page. Selenium can test web pages that are produced by any number of technologies on the back end.
For some background on jsps, keep in mind: A jsp is converted by the web server to a servlet (it is converted to a java class that is a servlet) and then the servlet is compiled by the java compiler. So a jsp is really just a servlet.
Upvotes: 2