Wednesday, 20 January 2016

Video Demo 4 Test Suite

How to create test suite using Senuji and add tests to the suite and execute them as one project. 


Sunday, 17 January 2016

Senuji Build Structure Change

We have decided to move with one build for Windows, Linux and OSx. Therefore we will be discontinuing separate releases for OS wise from upcoming release Version 001.005. Setting up procedure will be the same.

Wednesday, 13 January 2016

Video Demo 3 - Senuji Data Loops Until EOF csv file

Video Demo 3 - Senuji Data Loops Until EOF csv file




Following is the sample Senuji test script used for this demo
Open "https://www.google.lk/"
WaitForElementPresent "null" "Xpath:.//*[@id='lst-ib']"
Loop "Test.csv"
ClearTextBoxValue "null" "Xpath:.//*[@id='lst-ib']"
DataInput "1" "Xpath:.//*[@id='lst-ib']"
Click "null" "Xpath:.//*[@id='sblsbb']/button"
CaptureScreen
EndLoop






Tuesday, 12 January 2016

Video Demo 2 - Using user defined variables



Introduction

This demo will demonstrate how to use Senuji user define variables. For demo purpose I am going to open my Facebook sign in page and read my name form a label and store it to a variable. Then open Google and pass said variable value to Google search text box.
 


Senuji Script I used for this demo

Open "https://www.facebook.com/erandika.umal"
VariableSring "$MyName="
StoreStringToVariable "$MyName" "Xpath:.//*[@id='fb-timeline-cover-name']"
NavigateURL "https://www.google.lk"
WaitForElementPresent "null" "Xpath:.//*[@id='lst-ib']"
InputStringVariableToTextbox "$MyName" "Xpath:.//*[@id='lst-ib']"

Video Demo 1 - How to create and execute Senuji test script


How you can create a Senuji test script and execute it on Senuji IDE. Sometime I am explaining how to understand Senuji test log or test report.

This demo will help you to understand that, Senuji can create and execute Selenium test case without Java programming knowledge.