I'm learning selenium these days.
Can someone tell me how to parametrize a web application for testing in selenium?
|
I'm learning selenium these days. Can someone tell me how to parametrize a web application for testing in selenium? |
|||||
|
|
If you are using java, you can create a |
||||
|
|
|
I'm not really sure what you're looking for but in case you're trying to parametrize your tests for easy changes, you should take a look at Selenese variables: http://seleniumhq.org/docs/04%5Fselenese%5Fcommands.html#store-commands-and-selenium-variables |
|||
|
|
|
This extension provides a little more help with script parametrization in Selenium IDE: http://wiki.openqa.org/display/SEL/SelBlocks It provides scoped variables, and can take parameters from an external XML file. |
|||
|
|
|
We wrote a test core with Selenium's webdriver framework. It's available in most of the popular languages: Java, Python, Ruby, C#. Then the test core reads from our own format CSV file to perform the actions that has been generalized based on target web application, example:
And then it will produce a log file for test report. Is this what you mean by parametrize? |
|||
|
|
|
You can use java reflection API for parametrization also i am using open office excel sheet to pass parameter to selenium functions Using Java reflection API you will be able to pass selenium functions as a string Selenium functions can be stored in a xml file and using java reflection API you can execute them |
|||
|
|
|
There are various methods to parametrize the selenium RC code. You can use CSV, Microsoft Excel, XML and the .properties file. In Microsoft Excel you can use POI APIs-HSSF(for Excel 2003) and XSSF(for Excel 2007). The best method that I find is using properties file. As told earlier also you can also use TestNG data provider but if you are using JUnit you have to use above mentioned method. Cheers. |
||||
|
|
|
If your just using the Selenium IDE, making parametrized tests is doable but kind of tricky. I recommend exporting your scripts to a real programming language(if you haven't already) and using a testing framework to make you tests parametrized and data-driven. Junit and TestNG both have good support for doing this. |
|||
|