Skip to content
automationScript logoautomationScript logo
  • Home
  • Blog
  • ProtractorExpand
    • Files using JavaScriptExpand
      • How to rename a file using JavaScript
      • How to delete a file using JavaScript
    • Excel Files using JavaScriptExpand
      • Write data to Excel files
      • Read data from Excel Files
    • Web Page operations using JavScriptExpand
      • Get data from HTML table
      • Select a dropdown
      • Check/Uncheck checkbox
    • Config files for ProtractorExpand
      • With multiple browser size handling
      • With multiple environment handling
      • With Proxy handling
    • DatabaseExpand
      • Javascript SQL server database connection example
      • Javascript MSSQL Database Connection Example
  • JavaExpand
    • String Manipulations with JavaExpand
      • Prime number program using Java
      • String related methods
      • Date and Time methods
    • DatabaseExpand
      • How to read MongoDB document in java | Connect to MongoDB server
      • JDBC Database connections
    • Excel Files using JavaExpand
      • How to Write data in Excel file using Java and Apache POI
      • How to read excel file In Java- 100% Working code
      • CSV Test Data Handling using Java
      • Excel handling for automation
      • Excel Test Data handling using Java
    • Files using JavaExpand
      • Create files using Java
      • Read text files using Java
      • Write text files using Java
      • Text file Reading and Writing
  • SeleniumExpand
    • API TestingExpand
      • How to perform API Testing with REST-assured | Rest Assured API Testing with Example
    • WebpageExpand
      • How to find broken links in Selenium WebDriver
      • How to select dropdown in Selenium using the Select class
      • How to get all options from a dropdown in Selenium WebDriver
      • How to handle web table in Selenium WebDriver
      • How To Highlight Element Using Selenium WebDriver
      • How to perform Mouse Hover in Selenium WebDriver
      • Checkbox Operations
    • CucumberExpand
      • How to create Runner class in Cucumber using Java
    • Automation FrameworkExpand
      • Page object model (POM) using By Class in Selenium
      • Create Object Repository in Selenium using Properties file
      • Use JavaScriptExecutor With Selenium
      • Use ExecuteScript to run JavaScript With Selenium
  • VBScriptExpand
    • Files/Folders (FSO)Expand
      • How to read text file using VBScript – FileSystemObject
      • How to create a text file using VBScript – CreateTextFile
      • How to create a folder using VBScript – FileSystemObject
      • Delete temporary files utility
      • How to write text file using VBScript
      • Compress files using VBScript
    • Excel functions with VBScriptExpand
      • Excel handling
      • Read data from Excel files
      • Search data from Excel files
    • Common VBScript functionsExpand
      • Error Handling
      • Outlook automation
      • Date and Time related functions
  • UFTExpand
    • UFT functions for WebpageExpand
      • How to select all text using UFT- CTRL+A and CTRL+C method
      • How to verify the position of an object using UFT on a webpage
      • How to verify presence of scrollbar using UFT
      • How to verify object property using UFT
      • Change screen resolution using UFT
      • Webtable operations
    • UFT SettingsExpand
      • How to associate function library at runtime in UFT- Complete code
      • Change screen resolution using UFT
      • How to create Action Template in UFT
    • Automation FrameworkExpand
      • UFT- Automation object model
      • Add object repository at runtime in UFT
      • Outlook automation Using VBScript-Automatic Email Sender
    • Database with VBScriptExpand
      • Database connections
    • Network connectionsExpand
      • How to ping a network using VBScript
      • Upload a file through FTP using VBScript
      • Connect to a network using VBScript
      • Disable a firewall using VBScript
    • XML HandlingExpand
      • Validate XML using VBScript
      • Modify XML using VBScript
  • JenkinsExpand
    • Jenkins Job DSL and Pipeline as Code
    • How to integrate Selenium with Jenkins – Step-by-step Example
    • How to configure selenium with Jenkins – Parallel Execution complete tutorial
    • How to read console output in Jenkins during Build – 100% working code block
  • QuestionsExpand
    • Interview QuestionsExpand
      • Selenium Interview Questions
      • Top 50 API Testing Interview Questions
      • SQL Queries for Testing interview
  • #10418 (no title)
automationScript logo

UFT

VBScript

How to handle synchronization in UFT/QTP

August 8, 2023August 8, 2023

In any test automation framework, browser handling is the most important part during automation scripting.  Let’s see how to handle synchronization in UFT. which you…

Read More How to handle synchronization in UFT/QTPContinue

VBScript

How to launch chrome incognito using UFT

August 8, 2023August 8, 2023

Using UFT we can launch Chrome incognito with the help of a small program. First, we will create an object of shell and then we…

Read More How to launch chrome incognito using UFTContinue

UFT

Get menu and submenu names in the Windows application​ using UFT

August 8, 2023August 8, 2023

UFT works very well with Windows as well as web applications. To get menu and submenu names in the Windows application, we can create a…

Read More Get menu and submenu names in the Windows application​ using UFTContinue

UFT VBScript

String reverse in VBScript without using inbuilt function

August 6, 2023August 6, 2023

String reverse in VBScript is a very common task. If you need to reverse a string in VBScript without using inbuilt reverse functions, we can…

Read More String reverse in VBScript without using inbuilt functionContinue

UFT VBScript

Verify a string is present in an array using VBScript

August 6, 2023August 6, 2023

In order to verify a string is present in an array, we will utilize the dictionary object provided by VBScript. First, we will create an…

Read More Verify a string is present in an array using VBScriptContinue

VBScript

Count Alphabetical characters using VBScript

August 6, 2023August 6, 2023

In order to count Alphabetical characters using VBScript in a string, first we need to get the characters from the given string, one char at…

Read More Count Alphabetical characters using VBScriptContinue

VBScript

Verification of Palindrome using VBScript

August 6, 2023August 6, 2023

A palindrome is a word, sentence, verse, or even number that reads the same backward or forward. For example- ATATA, BOB, 12321 In order to verify…

Read More Verification of Palindrome using VBScriptContinue

UFT VBScript

How to write data into Excel using VBscript

August 5, 2023August 5, 2023

In order to write data into Excel using VBScript, we can leverage Excel.application object. This object provides multiple methods which help us to create, open,…

Read More How to write data into Excel using VBscriptContinue

VBScript Error Handling – On Error Resume Next, On Error Goto 0
UFT VBScript

VBScript Error Handling – On Error Resume Next, On Error Goto 0

December 25, 2022December 25, 2022

VBScript Error handling in UFT automation scripts is very important like in any other language. We have some very common VBScript examples to demonstrate it….

Read More VBScript Error Handling – On Error Resume Next, On Error Goto 0Continue

UFT VBScript

How to get column index in a webtable using UFT

December 18, 2022December 18, 2022

Suppose that there is a webtable on the page and you have a column name. Now if you want to get the column index in…

Read More How to get column index in a webtable using UFTContinue

How to associate function library at runtime in UFT- Complete code
UFT VBScript

How to associate function library at runtime in UFT- Complete code

December 12, 2022December 14, 2022 Updated onDecember 14, 2022

The function library is the backbone of any test automation framework. You can associate function library at runtime using AOM. It is designed to handle…

Read More How to associate function library at runtime in UFT- Complete codeContinue

How to verify object property using UFT
UFT VBScript

How to verify object property using UFT

December 4, 2022December 14, 2022 Updated onDecember 14, 2022

We have to verify object property using UFT in almost every automation script we create while working on any test automation project. Here we have…

Read More How to verify object property using UFTContinue

How to select all text using UFT- CTRL+A and CTRL+C method
UFT VBScript

How to select all text using UFT- CTRL+A and CTRL+C method

December 4, 2022December 14, 2022 Updated onDecember 14, 2022

There may be some instances where you need to copy and paste or select all text using UFT. This can be achieved in many ways…

Read More How to select all text using UFT- CTRL+A and CTRL+C methodContinue

How to verify the position of an object using UFT on a webpage
UFT VBScript

How to verify the position of an object using UFT on a webpage

December 3, 2022December 14, 2022 Updated onDecember 14, 2022

We can verify the position of an object using UFT by utilizing two properties named clientWidth and offSetLeft. Suppose that we have two elements namely…

Read More How to verify the position of an object using UFT on a webpageContinue

How to verify presence of scrollbar using UFT
UFT VBScript

How to verify presence of scrollbar using UFT

December 3, 2022December 14, 2022 Updated onDecember 14, 2022

We can verify presence of scrollbar using UFT very easily when we have a scrollbar present on the screen. In order to verify the presence…

Read More How to verify presence of scrollbar using UFTContinue

How to read text file using VBScript – FileSystemObject
UFT VBScript

How to read text file using VBScript – FileSystemObject

November 27, 2022November 27, 2022

In order to read text file using VBScript, we can use multiple methods provided by FileSystemObject. FSO provides three functions i.e. read, readline, readall. These…

Read More How to read text file using VBScript – FileSystemObjectContinue

How to write text file using VBScript
UFT VBScript

How to write text file using VBScript

November 27, 2022November 27, 2022

We can write text file using VBScript with the help of many functions provided by FileSystemObject. Functions provided by FileSystemObject such as Write, Writeline, Writeblanklines…

Read More How to write text file using VBScriptContinue

How to create a text file using VBScript – CreateTextFile
VBScript

How to create a text file using VBScript – CreateTextFile

November 27, 2022November 27, 2022

If you have to create a text file using VBScript, it provides a very efficient tool FileSystemObject. Further, there are many methods provided by FileSystemObject…

Read More How to create a text file using VBScript – CreateTextFileContinue

How to create a folder using VBScript – FileSystemObject
UFT vbscript

How to create a folder using VBScript – FileSystemObject

November 27, 2022November 27, 2022

FileSystemObject can be used to create a folder using VBScript. FileSystemObject also known as fso is one of the most efficient tools provided by VBScript. We…

Read More How to create a folder using VBScript – FileSystemObjectContinue

How to check all checkboxes in UFT – ChildObjects in UFT
UFT VBScript

How to check all checkboxes in UFT – ChildObjects in UFT

November 21, 2022November 27, 2022 Updated onNovember 27, 2022

If you want to check all checkboxes in UFT on a webpage, there are many ways to do that. One of the most used approaches…

Read More How to check all checkboxes in UFT – ChildObjects in UFTContinue

Page navigation

1 2 Next PageNext
Buy Now
Categories
  • cucumber
  • javascript
  • jenkins
  • Protractor
  • Selenium
  • Testing Methodologies
  • Testing Tools
  • Troubleshooting
  • UFT
Tags

APACHE code cucumber java javascript jenkins selenium uft vbscript

Latest Posts
  • How to handle synchronization in UFT/QTPAugust 8, 2023
  • How to launch chrome incognito using UFTAugust 8, 2023
  • Get menu and submenu names in the Windows application​ using UFTAugust 8, 2023
  • Invert a number using JavaAugust 6, 2023
  • Validate prime number using JavaAugust 6, 2023
Follow Us
  • Facebook
  • Twitter
  • GitHub
  • LinkedIn
automationScript logo
A code repository dedicated to Test Automation tools. We have commonly used code blocks for major test automation tools to setup your test automation quicker.
Just 100 % working code !
Tools
  • Selenium
  • UFT
  • Protractor
  • Jenkins
  • Cucumber
  • REST-assured
  • VBScript
  • Java
Quick Links
  • About Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions
  • Sitemap
  • Contact Us
  • Guest Post
Let's Connect
Linkedin Facebook Twitter Instagram Youtube
  • contact@automationscript.com
  • +91 96432 40051
Copyright © 2023 automationScript.com
  • Home
  • Blog
  • Protractor
    • Files using JavaScript
      • How to rename a file using JavaScript
      • How to delete a file using JavaScript
    • Excel Files using JavaScript
      • Write data to Excel files
      • Read data from Excel Files
    • Web Page operations using JavScript
      • Get data from HTML table
      • Select a dropdown
      • Check/Uncheck checkbox
    • Config files for Protractor
      • With multiple browser size handling
      • With multiple environment handling
      • With Proxy handling
    • Database
      • Javascript SQL server database connection example
      • Javascript MSSQL Database Connection Example
  • Java
    • String Manipulations with Java
      • Prime number program using Java
      • String related methods
      • Date and Time methods
    • Database
      • How to read MongoDB document in java | Connect to MongoDB server
      • JDBC Database connections
    • Excel Files using Java
      • How to Write data in Excel file using Java and Apache POI
      • How to read excel file In Java- 100% Working code
      • CSV Test Data Handling using Java
      • Excel handling for automation
      • Excel Test Data handling using Java
    • Files using Java
      • Create files using Java
      • Read text files using Java
      • Write text files using Java
      • Text file Reading and Writing
  • Selenium
    • API Testing
      • How to perform API Testing with REST-assured | Rest Assured API Testing with Example
    • Webpage
      • How to find broken links in Selenium WebDriver
      • How to select dropdown in Selenium using the Select class
      • How to get all options from a dropdown in Selenium WebDriver
      • How to handle web table in Selenium WebDriver
      • How To Highlight Element Using Selenium WebDriver
      • How to perform Mouse Hover in Selenium WebDriver
      • Checkbox Operations
    • Cucumber
      • How to create Runner class in Cucumber using Java
    • Automation Framework
      • Page object model (POM) using By Class in Selenium
      • Create Object Repository in Selenium using Properties file
      • Use JavaScriptExecutor With Selenium
      • Use ExecuteScript to run JavaScript With Selenium
  • VBScript
    • Files/Folders (FSO)
      • How to read text file using VBScript – FileSystemObject
      • How to create a text file using VBScript – CreateTextFile
      • How to create a folder using VBScript – FileSystemObject
      • Delete temporary files utility
      • How to write text file using VBScript
      • Compress files using VBScript
    • Excel functions with VBScript
      • Excel handling
      • Read data from Excel files
      • Search data from Excel files
    • Common VBScript functions
      • Error Handling
      • Outlook automation
      • Date and Time related functions
  • UFT
    • UFT functions for Webpage
      • How to select all text using UFT- CTRL+A and CTRL+C method
      • How to verify the position of an object using UFT on a webpage
      • How to verify presence of scrollbar using UFT
      • How to verify object property using UFT
      • Change screen resolution using UFT
      • Webtable operations
    • UFT Settings
      • How to associate function library at runtime in UFT- Complete code
      • Change screen resolution using UFT
      • How to create Action Template in UFT
    • Automation Framework
      • UFT- Automation object model
      • Add object repository at runtime in UFT
      • Outlook automation Using VBScript-Automatic Email Sender
    • Database with VBScript
      • Database connections
    • Network connections
      • How to ping a network using VBScript
      • Upload a file through FTP using VBScript
      • Connect to a network using VBScript
      • Disable a firewall using VBScript
    • XML Handling
      • Validate XML using VBScript
      • Modify XML using VBScript
  • Jenkins
    • Jenkins Job DSL and Pipeline as Code
    • How to integrate Selenium with Jenkins – Step-by-step Example
    • How to configure selenium with Jenkins – Parallel Execution complete tutorial
    • How to read console output in Jenkins during Build – 100% working code block
  • Questions
    • Interview Questions
      • Selenium Interview Questions
      • Top 50 API Testing Interview Questions
      • SQL Queries for Testing interview
  • #10418 (no title)