Automated Testing Service Group


Automated Testing Service Group offers a complete range of testing automation services:  


Our main objective is to improve software quality.

Intelligent approach to automation enables us to considerably reduce the time required for testing as well as for testing scripts development.

Latest in blog
RSS

JScript operator is used for getting type of the variable. There are six possible values that typeof returns: "number," "string," "boolean," "object," "function," and "undefined".

In this post we will improve typeof operator so that it can also return "date" and "array" values for corresponding data types.

SilkTest secrets. Part 1 @ Fr, 25 July, 18:42

There are undocumented features in any computer program. Some of them are added specially (e.g. Easter Eggs), other can be programmers' mistakes, and some of them are just unimplemented features.
In this article we will describe one of the SilkTest's undocumented features, the 2nd argument for LogError function.

In this post you will find an example of the function, which delays script execution and displays the time left for execution in the TestComplete Indicator.

Happy New Year! @ Mo, 31 December 2007, 23:30

Automated Testing Service Group wishes you a Happy New Year!

May all your dreams come true in 2008!

 

SilkTest: Working with services @ Th, 27 December 2007, 16:57
There is an excellent blog post about how to work with Windows Services in SilkTest. You can find it here.
 
However, later author says, that in order to work with services which display names consist of two and more words (e.g. “Windows Time”), you should use their names instead of Display Names.
 
Fortunately, this is not the only one method. Using Name instead of Display Name isn’t that good, because names are short and sometimes it is hard to understand which service is used.
 
In order to work with two and more named services, you can put its name in quotes.
 
LIST OF STRING lsOut
SYS_Execute ("net start ""Windows Time""", lsOut)

ListPrint(lsOut)