Wednesday, June 10, 2009

The simplest testing principle

Before starting testing web-application make sure that network cable is connected.

Wednesday, June 3, 2009

The good tester

To the optimist, the glass is half full. To the pessimist, the glass is half empty. To the good tester, the glass is twice as big as it needs to be.

by eXtreme Software Testing site

Wednesday, May 27, 2009

FireShot: web pages capturing tool for IE & Firefox

FireShot is a screen shot tool that can capture just the webpage you are looking at. It can capture the visible area or the entire page. The free version is useful for basic capture/save. You can find FireShot here.

Wednesday, May 20, 2009

Firebug: well known web debugger tool

Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page. You can get it here

Wednesday, May 13, 2009

FireGestures: execute various commands with mouse gestures

A customizable mouse gestures extension which enables you to execute various commands and user scripts with five types of gestures. You can get it here

Wednesday, May 6, 2009

Google Notebook

Web application useful for storing short notes or ticket templates, etc. You will be required your Google account and can access it here

Wednesday, April 29, 2009

Input Director: use one keyboard & mouse for two computers

Input Director is a software solution used to control two computers using one keyboard and mouse. It make VNC, Remote Desktop or KVM obsolete. Read more and get it here or here.

Wednesday, April 22, 2009

Extended Statusbar: the easiest performance testing tool

A Statusbar with speed, percentage, time and loaded size (similar to Opera's one). You can get it here

Wednesday, April 15, 2009

Bottom Error Console: shows Firefox Error Console on the bottom of the page

Bottom Error Console splits window and display error console on the down side. You can toggle the presence of the display with the statusbar button or shortcut key (Ctrl + Shift + B). You can get it here

Thursday, February 19, 2009

Brilliant assignment!

Recently I've found the result of great work of some guy. In bug description:

Assigning to Andy to reassign...

:)

Thursday, January 29, 2009

Client-side performance testing of Web applications

Testing Goals:
- Improve Web-site performance

Measurements:
- Total Sequence Time (total time of page loading)
- Request Count (amount of requests while opening testing page)
- Page download Size

Tools Required:
- IE / FireFox
- Fiddler2

Test Flow:
- Prepare the test cases you would like to cover in Performance Testing
- Clear cache and cookies of the browser
- Get Fiddler in to the recording mode - F12
- Run prepared test cases
- Save the Fiddler log and clear the fiddler session
- Run prepared test cases again without clearing cache and cookies to measure cached site performance
- Analyze results

Analyzing results:
- Total Sequence Time: good result is <= 3 seconds
- Request Count: good result is <= 50 requests
- Page download Size: good result is <= 100 KB

Example:
- Google search for 'fiddler2' - good performance :)