Skip to main content

Add Custom functions to Selenium

We can add custom functions to selenium or extend your selenium jar functions as you want. We can do this in 2 ways.


1. Extending selenium-browserbot.js and selenium-api.js
     a. Extract your selenium-server-standalone-xxx.jar to temp folder.
     b. Find the files selenium-browserbot.js and selenium-api.js inside core\scripts\ folder.
     c. Add your custom function to class BrowserBot like below in selenium-browserbot.js.

  1.  BrowserBot.prototype.yourFunctionName = function() {
  2.                    //code here
  3.         }

     d. Now add your function to class selenium to expose Selenium API like

  1. selenium.prototype.yourFunctionName = function() {
  2.               return this.browserbot.youFunctionName();
  3.          }

     e. Thats all. Re-bundle your JAR file with updated files. Your Selenium-Server JAR file  is ready with your custom functions.


Here is the example code:


  1. BrowserBot.prototype.getAllRadios = function() {
  2.        var elements = this.getDocument().getElementsByTagName('input');
  3.         var result = [];
  4.         for (var i = 0; i < elements.length; i++) {
  5.            if (elements[i].type == 'radio') {
  6.                result.push(elements[i].id);
  7.            }
  8.         }
  9.          return result;
  10.  };

To add in selenium-api.js,
  1. Selenium.prototype.getAllRadios = function() {
  2.       return this.browserbot.getAllButtons();
  3. };
So this is a appraoch to extend your Selenium functions. But this approach have risk of altering/damaging existing selenium functions in the JAR package. Thats why they provided a option called User-Extensions.


2. User-Extension.js
a. Just add your custom functions in user-extensions.js by adding function to class selenium.
b. Important point is, here you have use getDocument() for browserbot to do your operations.
c. Finally just start your selenium server JAR with your user-extenstions.js like
java -jar /selenium-server-1.0.1/selenium-server.jar -userExtensions /user-extensions.js
d. Thats all. Your functions are available now in JVM.
e. To use this, create instance for httpCommandProcessor and use doCommand(yourFunctionName) OR simply selenium.youFunctionName.


Here is the example code:

  1. Selenium.prototype.getAllRadios = function() {
  2.        var elements = this.browserbot.getDocument().getElementsByTagName('input');
  3.        var result = [ ];
  4.        for (var i = 0; i < elements.length; i++) {
  5.            if (elements[i].type == 'radio') {
  6.                result.push(elements[i].id);
  7.            }
  8.       }
  9.        return result;
  10. };

Hope this helps you to create your own functions to extend your selenium-server.jar.

Comments

Popular posts from this blog

Some good Resources / Blogs / Sites for Selenium Users

Here I have listed out some good blogs and sites by extensive selenium automation users. Hope these will help you a lot. http://automationtricks.blogspot.com  - by NirajKumar http://www.theautomatedtester.co.uk/ http://testerinyou.blogspot.com   - by Naga/Mathu http://seleniumready.blogspot.com  - by Farheen Khan http://seleniumdeal.blogspot.com/  - Amit Vibhuti http://seleniumexamples.com/blog Sauce Labs and BrowserMob are companies doing cloud and extensive selenium automation services, products, etc http://saucelabs.com/blog http://blog.browsermob.com http://testingbot.com/ Cedric Beust -  creator of the TestNG Java testing framework. http://beust.com/weblog/ http://blog.reallysimplethoughts.com/  - by Samit Badle, Created many Selenium IDE Plug-Ins Available Colud Testing: 1. SauceLabs 2. Soasta 3. BrowserMob 4. CloudTesting.com  etc. Selenium Testing Products: 1. Twist by ThoughtWorks 2.  TestMaker by...

Robotic Process Automation vs Traditional Test Automation vs Process/Task Automation

In IT industry, the term RPA is keep on hearing all sides of the walls for a while; and I was so confused about What's the difference from the test automation tools in the market and what's more into it. I did some search, understanding, and writing this post to share with you all. If I am not correct, PLEASE correct me. Traditional Test Automation: First, we have to recall the test automation tool QTP or UFT (Initially developed by Mercury Interactive Corporation(MIC) after WinRunner, then sold to HP, and again MicroFocus acquired from HP now). If you look into the architecture of this tool, MIC was trying to convert the testers into more efficient testers i.e. Testers were executing the test cases manually for regression suites, performance suites, etc. which had lot of repetitive tasks done by human testers instead of concentrating into new ideas or bug finding strategies to improve the quality of the product.  Thus WinRunner was introduced but it was demanding m...

Run JavaScript from QTP

Yeah, You can run your pure JavaScript from QTP using RunScript method. Lot of times, we are in need of firing events or simulating actions on web page which is not supported by QTP. At that time, you can use your direct DOM methods and directly execute your script on the web page from QTP like, Dim MyPage ,  SearchBox Set MyPage  =  Browser ( "title:=Google" ) . Page ( "title:=Google" )    Set SearchBox  =  MyPage . RunScript ( "document.getElementsByName('q')(0);" ) SearchBox . Value = "testing" 'if objects available in frames, Set SearchBox  =  MyPage . RunScript ( "document.frames(4).document.getElementsByName('q')(0);" ) 'OR Set objFrame =  Browser ( "title:=Google" ) . Page ( "title:=Google" ). Frame( "title:=something" ) objFrame . RunScript ( "document.getElementsByName('q')(0);" ) Also, you can execute by obtaining actual brow...