Sahi Framework - Scenario File

abstract The Sahi Framework allows testers to write their testcases in a Spreadsheet (Excel like) interface and run it from Sahi. Often a testing team consists of a mix of subject matter experts, some manual testers and testers with some automation experience. Writing tests in the language of the business allows all stake holders to participate and derive value out of the automation process.

Sample Scenario File

A simple Scenario looks like this:

TestCase Key Word Argument1 Argument2 Argument3
loadSahi "books_lib.sah"
 
 
Check shopping cart total [Documentation] Smoke test for add books
login "test" "secret"
addBooks 3 2 1
verifyTotal 1640
logout
 
 
Test login error message [Documentation] Checks Invalid login message
login "test" "bad password"
verifyNotLoggedIn
verifyErrorMessage "Invalid username or password"
These tests talk mostly in the language of the business (also called a Domain Specific Language or DSL for that business), and hide away all the implementation details of clicking buttons and populating textboxes.

Starting from Sahi Pro 6.1.0, a new format as shown below is introduced. This allows for adding additional columns. The example below shows two additional columns Comments and Tags added to the file.

Comments Tags TestCase Key Word Argument1 Argument2 Argument3
Load the function library file loadSahi "books_lib.sah"
 
 
First Testcase smoke, admin Check shopping cart total [Documentation] Smoke test for add books
login "test" "secret"
addBooks 3 2 1
verifyTotal 1640
logout
 
 
Second Testcase all, smoke, user Test login error message [Documentation] Checks Invalid login message
login "test" "bad password"
verifyNotLoggedIn
verifyErrorMessage "Invalid username or password"
At the time of execution from Script Editor or commandline, you can provide the expression for evaluating tags using binary operators. In above case, if you want to execute testcases for admin and user, the tag can be "admin || user".

info Additional columns can only be added before TestCase column. A column with heading as "Tags" have a special meaning and will allow you to select the tags during execution.

Loading Sahi script libraries

The implementation details are moved into an included Sahi script, which is linked to this Scenario via the initial
loadSahi"books_lib.sah"
statement.

The code in books_lib.sah is given below:
function login($username, $password){
    _setValue(_textbox("user"), $username);
    _setValue(_password("password"), $password);
    _click(_submit("Login"));
}

function addBooks($numJava, $numRuby, $numPython){
    _setValue(_textbox("q", _near(_cell("Core Java"))), $numJava);
    _setValue(_textbox("q", _near(_cell("Ruby for Rails"))), $numRuby);
    _setValue(_textbox("q", _near(_cell("Python Cookbook"))), $numPython);
    _click(_button("Add"));
}

function verifyTotal($total){
    _assertEqual($total, _textbox("total").value);
}

function logout(){
    _click(_button("Logout"));
}

function verifyNotLoggedIn(){
    _assertExists(_textbox("user"));
}

function verifyErrorMessage($msg){
    _assert(_isVisible(_div("errorMessage")));
    _assertEqual($msg, _getText(_div("errorMessage")));
}


Executing the Scenario file

Executing the Scenario file is no different from executing a Sahi script.

Play back reports/logs

On execution, Sahi generates logs showing success or failure. Logs are visible from the "Logs" link in Playback tab. Logs can also be accessed via http://localhost:9999/logs

A sample log is shown below. Clicking any step expands to show the underlying Sahi steps. You can click on the log statements below.

Expand All | Collapse All
loadSahi "sample_lib.sah"
_navigateTo("/demo/training/"); at Mar 9, 2011 11:37:31 AM
 
Check shopping cart total[Documentation]Smoke test for add books
login"test""secret"
_setValue(_textbox("user"), "test"); at Mar 9, 2011 11:37:33 AM
_click(_submit("Login")); at Mar 9, 2011 11:37:33 AM
addBooks321
verifyTotal1640
logout
_click(_button("Logout")); at Mar 9, 2011 11:37:48 AM
 
 
Test login error message[Documentation]Checks Invalid login message
login"test""bad password"
_setValue(_textbox("user"), "test"); at Mar 9, 2011 11:37:49 AM
_click(_submit("Login")); at Mar 9, 2011 11:37:49 AM
verifyNotLoggedIn
_assertExists(_textbox("user")); at Mar 9, 2011 11:37:50 AM
verifyErrorMessage"Invalid username or password"


Please refer to sahi/userdata/scripts/demo/framework folder for some examples.

Syntax

Test Case Key word Argument 1 Argument 2 Argument 3 Very first line of sheet
 Blank lines are ignored
 loadSahi"custom_lib.sah"Loads a Sahi script with required function definitions
 
Test Case OneStep OneParam1Param2New test case started. StepOne(Param1, Param2) is called.
Step TwoParam3StepTwo(Param3) is called
 
Test Case TwoStep One25"age"New test case started. String values are quoted
Step TwoParam5
 
Test Case Three[Documentation]Some description about the test case[Documentation] is useful for, well, documentation
Step One25"age"New test case started. String values are quoted
//Step TwoParam5Commented step using //
Step TwoParam6
 
Spaces will be removed from keywords and corresponding functions invoked.

The rules for writing a Scenario file are as follows

The first line should be populated with Test Case | Key word | Argument 1 | Argument 2 | Argument 3 The names of the columns are not important, but they should not be left blank

If the first column is populated, a new test case is started.

The second column holds keywords. Keywords are mapped to functions in the included Sahi script. They can be user defined functions or Sahi APIs themselves

For example,
login "test" "secret"
in the Scenario file, maps to the javascript call
login("test", "secret");


_assertEqual _getText(_cell("msg")) "abcd"
becomes
_assertEqual(_getText(_cell("msg")), "abcd");


Variables

The Scenario file also supports variables, eg.

Simple variables

$amount=1000
verifyAmount$amount

Assigning value returned by function

Eg. To get the value returned by function createUserInGroup:

Using [ReturnValue]

createUserInGroup"My name""My group"
$userId=[ReturnValue]
verifyUserCreated$userId"My name""My group"
info[ReturnValue] is a keyword to access return value of function executed in previous step. Added since Sahi Pro 6.1.0
Inline declaration

$userId=createUserInGroup"My name""My group"
verifyUserCreated$userId"My name""My group"
Inline as code

$msg= _getText(_cell("msg"))   
_assertEqual $msg "abcd"  

SetUp and TearDown

Different test cases may need the same steps to be executed before and after. For example, one may need to login before and logout after each test case. This can be accomplished through global SetUp and TearDown blocks. TearDown will be called inspite of any errors or failures in the testcase.
infoThe [Global] keyword is mandatory and defines these [Setup] and [Teardown] methods for all testcase blocks.
[Global] [SetUp]  
_log"In Global Setup"
login"test""secret"
 
[TearDown]
_click_button("Logout")
_log"In Global Teardown"
 
Verify books total [Documentation] Check once
addBooks 3 2 1
verifyTotal 1650
 
Verify books again [Documentation] Check again
addBooks 3 2 2
verifyTotal 2000
This will execute as:

 _log"In Global Setup"  
login"test""secret"
addBooks 3 2 1
verifyTotal 1650
_click_button("Logout")
_log"In Global Teardown"
 
 
 _log"In Global Setup"  
login"test""secret"
addBooks 3 2 2
verifyTotal 2000
_click_button("Logout")
_log"In Global Teardown"

Creating Keywords on the fly in a Scenario file

warning This is not recommended.
Keywords are normally created as functions in the included Sahi scripts, so that the details are hidden away and one gets good programmatic control in the scripts. But sometimes it may be convenient to club together different steps and create a keyword in the Excel sheet itself.

Create AddBooksCheck Key Word[CreateKeyword]Add Books Check[CreateKeyword] command creates a keyword called "Add Books Check"
[Arguments]$java $ruby $python $totalThese are the arguments or parameters that "Add Books Check" takes as input
[Documentation]Data drivable add books check
addBooks$java$ruby$python
verifyTotal$total
So now, a call to "Add Books Check" like this:

 Add Books Check3211650
is equivalent to

addBooks321
verifyTotal1650

Data driven testing

Data Driven Example[Keyword]Add Books Check Starts a testcase "Data Drivern Example" AddBooksCheck function will be called for the data set below.
   
 [SetUp]This will be called BEFORE each row of data
 login"test""secret" 
   
 [TearDown]This will be called AFTER each row of data
 _click_button("Logout") 
   
 [Documentation]javarubypythontotalIgnored by Sahi. Makes test case more readable
 [Data]3211650[Data] denotes start of data
 4502100 
 0193350 
This roughly translates to:

 login"test""secret"
 Add Books Check3211650
 _click_button("Logout")
 
 login"test""secret"
 Add Books Check4502100
 _click_button("Logout")
 
 login"test""secret"
 Add Books Check0193350
 _click_button("Logout")
 

Using External Data

Normally, parameter data is passed inline to keywords/functions in scenario files. However, one may want to keep the parameter data in a separate file for easier maintenance. Sahi Pro 6.2 adds the ability to represent data in external files or database and allows an easy way of accessing such externalized data.

There can be three different ways of accessing external data in Sahi's excel framework:

1) Through CSV file by using _readCSVFile api

D1=_readCSVFilesample_data.csv
2) Through excel file by using _readExcelFile api

D1=_readExcelFilesample_data.xls
3) Through database by using _getDB api

$db=_getDB($jdbcDriver, $jdbcURL, "", "")
$sql="SELECT * FROM EXTERNALDATA"
D2=$db.selectWithHeader($sql)

To understand how this data can be used in scenario files.

Consider a situation where a new user is to be created and added to the database. Each user has four properties lets say firstname, lastname, age, gender.

One wants to pass these parameters as data in a function called "addUser()", which takes these four parameters in the same sequence as mentioned above.
function addUser(firstname, lastname, age, gender) {
	...
}
Now, lets have a look at how the external data can look like.


Case 1 data1 Shyam Sundar 11 male
Case 2 data2 firstname lastname age gender
Shyam Sundar 11 male
Jack Sparrow 21 male
Case 3 data3 age gender firstname lastname
11 male Shyam Sundar
21 male Jack Sparrow
Case 4 data4 firstname lastname age gender
Jack Sparrow 21 male
Shyam Sundar 11 male

From database:
Case 5 firstname lastname age gender
Jack Sparrow 21 male
Shyam Sundar 11 male

When data has a single row

Case1
Here data1 is a 1-dimensional array, which can be directly accessed as [D1:data1] and passed to the addUser function.

TC:addUser [Documentation] Add User to the database
addUser [D1:data1]
Or

TC:addUser [Keyword] addUser
[Data] [D1:data1]

When data has multiple rows

Case2
Here data2 is a 2-dimensional array and column sequence is same as that required by the function. So it can either be passed directly as [D1:data2] or each parameter in the same sequence as required.

TC:addUser [Keyword] addUser
[Data] [D1:data2]
// or [Data] [D1:data2:firstname] [D1:data2:lastname] [D1:data2:age] [D1:data2:gender]

Case3
Here also data3 is a 2-dimensional array but sequence of the columns is not the same as the function. So here we can not pass it directly as [D1:data3].

TC:addUser [Keyword] addUser
[Data] [D1:data3:firstname] [D1:data3:lastname] [D1:data3:age] [D1:data3:gender]
Case4
This is same as the Case2. Empty rows will be ignored.

Case5
This is the case when we fetch data from any database using _getDB. There is no key like "data1" here so each column can be accessed as [D2::columnName].

TC:addUser [Keyword] addUser
[Data] [D2::firstname] [D2::lastname] [D2::age] [D2::gender]