Beginning with Selenium 3.0 Automation – Part IV (Scripting with Selenium 3.0)

Beginning with Selenium 3.0 Automation – Part IV (Scripting with Selenium 3.0)

 

Hey Folks, you are all set to begin with the Selenium scripting.

Continue reading “Beginning with Selenium 3.0 Automation – Part IV (Scripting with Selenium 3.0)”

Beginning with Selenium 3.0 Automation – Part III (Setup your project and Configure build path)

Beginning with Selenium 3.0 Automation – Part III (Setup your project and Configure build path)

 

With your basic idea about Selenium, it is time to begin with the actual Selenium coding.

Continue reading “Beginning with Selenium 3.0 Automation – Part III (Setup your project and Configure build path)”

Beginning with Selenium 3.0 Automation – Part II (Basics of Selenium)

Beginning with Selenium 3.0 Automation – Part II (Basics of Selenium)

 

Now that you are conversant with the general idea about automation and have already decided to make the grade in carrying out an automation test, we will discuss the most preferred and used OpenSource automation testing tool – Selenium.

Continue reading “Beginning with Selenium 3.0 Automation – Part II (Basics of Selenium)”

Beginning with Selenium 3.0 Automation – Part I (Basics of Automation)

Beginning with Selenium 3.0 Automation – Part I (Basics of Automation)

 

Test automation is the use of software to control the execution of tests, the comparison of actual outcomes to predicted outcomes, the setting up of test preconditions, and other test control and test reporting functions.

Continue reading “Beginning with Selenium 3.0 Automation – Part I (Basics of Automation)”

QA Complete – Setting up the Configuration for your Automation Scripts

QA Complete – Setting up the Configuration for your Automation Scripts.

 

It has always been a bane of Test Managers to manage their work and track it successfully. QA Complete, Test Link, ALM are some of the tools available to cater to such tedious functions of managing the complete set of test cases, and executing them successfully.

QA Complete provides the following benefits and ensures a complete and comprehensive set of test management capabilities. Besides this, it also promises a great delivery on centralized reporting across all aspects of testing; be it Manual or Automated testing.

Continue reading “QA Complete – Setting up the Configuration for your Automation Scripts”

Using XPath in Web Application Testing (Selenium)

Using XPath in Web Application Testing (Selenium)

With Selenium making waves in Web Application testing and more testers are taking to it like duck to water. Let’s discuss the importance of using XPath for Automation Testing using Selenium.
Continue reading “Using XPath in Web Application Testing (Selenium)”

Testing a web service using Eclipse

Testing a web service using Eclipse

Testing a web service. Are you?

With increased technological advancements, we are seeing a huge awareness in using web services and testing them.
Continue reading “Testing a web service using Eclipse”

Creating a Keyword Driven Test Automation Framework

Automation Testing Framework model (Keyword driven)

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. Continue reading “Creating a Keyword Driven Test Automation Framework”

Automation – QTP Tips

Software Automation, QTP

Automation – QTP related tips. 
Sureshot things you should remember

. Used to refer to the Page

• Browser(“micClass:=Browser”) Used to refer to the Browser object • Page(“micClass:=Page”)

. Used to refer to a textfield

Object • WebEdit(“name:=txtAssertion”)   Continue reading “Automation – QTP Tips”

Launch QTP through VBScript

Software Automation, VBScript, QTP

VBScript – Launch QTPAn update to our QTP knowledge. What I have below is a script that will enable the user to automatically open QTP and run the desired QTP function that could be coded within a vbs script.

 

Here is the script.
You can use this script to launch QTP automatically and run the scripts anytime from any place. No need to copy the scripts into your machine at all.

‘ This is a base function to launch QTP automatically and run the desired functions.
Dim qtApp ‘ defines the object to invoke the application through late binding technique
‘ To set the QTP late binding object. This object will be used to invoke the application QTP and associate a late binding connection to it. Continue reading “Launch QTP through VBScript”