Hemshankar Sahu
--
You received this message because you are subscribed to the Google Groups "Selenium Developers" group.
To post to this group, send email to selenium-...@googlegroups.com.
To unsubscribe from this group, send email to selenium-develo...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-developers?hl=en.
There's actually a well-structured system for adding or customizing language support in Selenium IDE. What you need to do is to build a new formatting module, and load it when you build your tests. Here's what I wrote the last time someone asked about how to do this:
· The IDE release notes have a little bit of info on formatter plugins: http://code.google.com/p/selenium/wiki/SeIDEReleaseNotes.
· Adam Goucher did a great series of blog posts a few years ago about writing IDE plugins:
o The Selenium-IDE 1.x plugin API (Part 1) – Build and Preferences: http://adam.goucher.ca/?p=1331
o The Selenium-IDE 1.x plugin API (Part 2) – The Toolbar: http://adam.goucher.ca/?p=1341
o The Selenium-IDE 1.x plugin API (Part 3) – The Sidebar: http://adam.goucher.ca/?p=1343
o The Selenium-IDE 1.x plugin API (Part 4) – Extending the Selenium API: http://adam.goucher.ca/?p=1348
o The Selenium-IDE 1.x plugin API (Part 5) – Publishing Updates: http://adam.goucher.ca/?p=1351
o The Selenium-IDE 1.x plugin API (Part 6) – Formatters: http://adam.goucher.ca/?p=1352
o The Selenium-IDE 1.x plugin API (Part 7) – Packaging Nuances: http://adam.goucher.ca/?p=1362
o The Selenium-IDE 1.x plugin API (Part 8) – Localization: http://adam.goucher.ca/?p=1376
o The Selenium-IDE 1.x plugin API (Part 9) – Secure Password Storage: http://adam.goucher.ca/?p=1377
o The Selenium-IDE 1.x plugin API (Part 10) – Registering your plugin: http://adam.goucher.ca/?p=1387
· The old Wiki has a page that describes how to write a formatter (be forewarned, it’s O-L-D): http://wiki.openqa.org/display/SIDE/Adding+Custom+Format
Ross
--