Selenium Pattern Matching using Regular expressions
Selenium Pattern Matching using Regular expressions
Selenium Regular Expression patterns are the most frequenty used and the most useful.
Selenium – Pattern Matching through globs i.e. globbing
Selenium Pattern Matching using globs
Patterns, the magic input typically in querying scenarios. These are the basis on which querying can be made simple and yet powerful. In order to verify text contents of websites, it is equally important to verify these through matching patterns. Read more »
Running a Selenium RC test using C#
Running a Selenium RC test using C#
What is Selenium RC?
- It is a tool that enables us to write automated web application UI tests.
- Typical includes support for languages as given under
- Java
- C#
- Python
- PHP
- Ruby On Rails
- Perl
Resolving the “Bind Exception” stumble block for JMeter
Resolving the “Bind Exception” stumble block for JMeter
Using JMeter to test performance provides an unusual stumble block in the form of Windows limitations. When 1000 to 1200 threads are in process, you may hit the block in the form of “Bind Exception“. This is attributed to the limitation of Windows to process concurrent threads. We can enhance the limit by the following workaround.
QTP – Accessing SQL Server for automation test needs
Here’s the script that will enable you to connect to SQL Server Database and carry out basic functional tests.
Enhance the script as you may deem fit to cater to your testing needs. All the best.
Read more »
Creating a Keyword Driven Test Automation Framework
Test Automation Framework.
Automation:
With increased effort being directed to automation; it is equally important to know that to be successful and efficient necessiates for some basic infrastructure in place. The importance of an automation framework gets prime focus if you are planning to embark on a full-fledged automation effort. However creating an automation framework does not come on a platter. A huge effort does goes in to identify the scenarios and the reusability nature of the various components within the framework model.
It is equally important to know the specific operations that could synergically combine and work together to generate the final result. Read more »
QTP Database Testing : Connecting to an Access database and executing a query
QTP Database Testing : Connecting to an Access database and executing a query
One of the most intriguing and challenging tasks for a tester is to conduct a Database test and verify the query and the related outcome. It surely needs extensive knowledge on executing the underlying queries and verifying its correctness based on a host of parameters. The most important aspect is the correctness of the query and the optimized nature. This requires good knowledge in query writing, understanding the intricacies of the Database. Read more »
Technical – Automation
Automation – QTP related tips.
Sureshot things you should remember
• Browser(“micClass:=Browser”) Used to refer to the Browser object • Page(“micClas:=Page”)
Used to refer to the Page
Object • WebEdit(“name:=txtAssertion”) Used to refer to a textfield • Eg Browser(“micClass:=Browser”).Page(“micClass:=Page”).WebEdit(“name:=ne wDescription”) Is used to refer to the textfield “newDescription” on the current page within the current browser. • To check the existence of the textfield Browser(“micClass:=Browser”).Page(“micClass:=Page”).WebEdit(“name:=ne wDescription”).exist
• To set the value of the textfield to “Abhilash”
Browser(“micClass:=Browser”).Page(“micClass:=Page”).WebEdit(“name:=ne wDescription”).Set “Abhilash”

