18 January 2026:


This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.



Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.

script editors

TSissonCredTSissonCred Members
edited December 2013 in Sahi - Open Source
What Script Editors do you use for editing Sahi Scripts?
What are your pros/cons or tips and tricks for the editor you use?

Comments

  • Notepad++

    I have been using Sahi for a few months now and I primarily use Notepad++ to edit my scripts. I have updated the Style Configurator (Settings menu) and associated .sah files with Javascript so the styles are displayed. I've also added many of the Sahi functions to the Javascript User-defined keywords edit box in the Style Configurator. There is also a Function List (View menu) where you can sort and filter on the functions in your libraries.
  • globalwormingglobalworming Moderators
    edited December 2013
    IntelliJ or alternatively Webstorm. Just put the api.sah in you project and you have good code completion or how its called :) one feature i reallly needed for an editor is supported here: function chaining with various return types. For Example:
    $OrderPage.submitOrder = function() { return $Cart }
    $Cart.next = function() { return $PaymentPage }
    
    // allows you to do something like 
    $OrderPage.submitOrder().next()
    // with code assist listing all functions for the different Javascript Objects
    
Sign In or Register to comment.