Software / Technology Tips

Tips for Installation Testing

1. Fresh Installation of software: >Which refers to the fresh platform(OS) on which software needs to install. >An OS will be considered as fresh if no other/same version of that software is install ever, other software may be present. 2. Upgrade of existing software with new version: >In this scenario, an older version of same software…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Mandatory requirement before publishing a bug report

1. Look for duplicates and if found duplicates in that case strategy changes from reporting to appending information on the already reported bug. This enhances the importance of the bug that is reported and ensures the management has lesser time dealing with duplicates during triage. This is a way of respecting the time of your…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Tip for Bitmap CheckPoint in QTP

Bitmap Checkpoint: ————————- This checkpoint checks the content of the bitmap in the application.Bitmap checkpoints can be placed for any area of the application.Bitmap checkpoint are also applicable for buttons,text boxes and tables. Steps to insert a Bitmap Checkpoint: —————————————– 1)In recording mode select Insert>Checkpoint>Bitmap Checkpoint. 2)Click an object to be checked and select the…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Test a Website's Compatible with Multiple Languages

Prepare a Rock Solid Test Environment and Use it For a Website hosted in English and Japanese Language, it’s not a ball in the browser’s court to change the language of the browser and run the desired test scripts for it. So there comes the need of 2 machines with different language settings in the…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Saving time with Text Expanders

Here is a nice little tool I found that could help you avoid doing repetitive tasks especially in coding and documenting/emailing. Texter is a stand-alone, text substitution application that resides in system-tray and can run across any application. Till recently, I preferred WYISYG HTML editors simply because they are faster and easier to use, but…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Use of Properties File in Selenium Webdriver

While writing scripts for a web application in Eclipse, we have go through several elements. Using xpath/css/id etc., we find the element and then we perform some actions on those elements like clicking, sendkeys etc. But later, if the path of a particular element gets changed, the our code won’t work. It will throw error…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

How to catch the click event of the button inside the WinJs ListView

Goal: Catch the click events of the button inside the WinJs listview using win-interactive class  and   WinJS.Utilities.markSupportedForProcessing. sometimes we may have requirement like having buttons or diffrent images in the Winjs Listview items.As we click on the listview item ,ItemInvoke  event is always getting called.so to call the individual button click event we need win-interactive…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Utility Objects in QTP

Utility Objects —————– QTP Provides the several utility objects to enhance the power of scripting.Utility Objects are the reserved objects in qtp.These objects can be used in reporting preferences during run time. There are various Types of Utility Objects: 1)Crypt Object 2)DataTable Object 3)Description Object 4)DotNetFactory Object 5)DTParameter Object 6)DTSheet Object 7)Environment Object 8)Extern Object…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Add and Remove fields/columns from Mongo database collection/table

Lets remove Phone field from 3rd row, where _id: [email protected]  db.employees.update({_id:  [email protected]“}, {$unset:{Phone:””}}) The above command/query will remove the Phone field from the 3rd row only. _id Name Phone birthDate [email protected] Srikant +91-234-567-4567 [email protected] Abc M +1-789-654-0987 06/20/90 [email protected] Xyz R

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Firefox Tips: Introducing about:config hacks

If you have already tried about:config URL then you must be aware of the warning Firefox displays before allowing you to access the config settings. It actually is a risky scenario, so it would be wise to backup Firefox’s configuration data before proceeding. To back up configuration settings, go to Run command and type: %appdata%\mozilla\firefox\profiles…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!