Slideshare.net (beta)

 
Post: 
Myspace Hi5 Friendster Xanga LiveJournal Facebook Blogger Tagged Typepad Freewebs BlackPlanet gigya icons



All comments

Add a comment on Slide 1

If you have a SlideShare account, login to comment; else you can comment as a guest


Showing 1-50 of 0 (more)

iMacros Web Testing

From iopus, 4 months ago

In-Browser Web Testing for Internet Explorer and Firefox

331 views  |  0 comments  |  0 favorites  |  9 downloads
 

Groups/Events

Not added to any group/event

 
 

Privacy InfoNew!

This slideshow is Public

 
Embed in your blog
Embed (wordpress.com)
custom

Slideshow Statistics
Total Views: 331
on Slideshare: 331
from embeds: 0* * Views from embeds since 21 Aug, 07

Slideshow transcript

Slide 1: Performance Testing & Internet Monitoring

Slide 2: STOPWATCH Command Intended for:  Performance testing (Response time measurements)  Internet Monitoring Why?:  Response time is a top factor for most visitors in choosing a website. For many visitors response time is even more important than prices or quality of content.  Monitor server uptime and server load  Notify webmaster in case of problems

Slide 3: Insert STOPWATCH Command VERSION BUILD=6120323 SET !FILESTOPWATCH mydata.csv STOPWATCH ID=Total URL GOTO=http://www.iopus.com/imacros/ STOPWATCH ID=SubmitData TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:WebDataEntry ATTR=NAME:SendButton&&VALUE:*submit* STOPWATCH ID=SubmitData ADD !EXTRACT {{!STOPWATCHTIME}} STOPWATCH ID=Store TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:order ATTR=NAME:ORDER_PRODUCT_NOW&&VALUE:Order<SP>Now STOPWATCH ID=Store ADD !EXTRACT {{!STOPWATCHTIME}} STOPWATCH ID=Total Some lines have been omitted for better readability. Please see Demo-Stopwatch for complete macro.

Slide 4: Demo-Stopwatch Sample Data  "2008/03/25","3:33:30","demo-stopwatch","FIRSTPAGE","1.902"  "2008/03/25","3:33:33","demo-stopwatch","SUBMITDATA","0.731"  "2008/03/25","3:33:45","demo-stopwatch","STORE","5.157"  "2008/03/25","3:33:45","demo-stopwatch","TOTAL","16.503"  "2008/03/25","3:38:49","demo-stopwatch","FIRSTPAGE","1.092"  "2008/03/25","3:38:52","demo-stopwatch","SUBMITDATA","0.731"  "2008/03/25","3:39:03","demo-stopwatch","STORE","5.308"  "2008/03/25","3:39:03","demo-stopwatch","TOTAL","15.062"  "2008/03/25","3:44:06","demo-stopwatch","FIRSTPAGE","0.611"  "2008/03/25","3:44:09","demo-stopwatch","SUBMITDATA","0.721"  "2008/03/25","3:44:33","demo-stopwatch","STORE","6.95"  "2008/03/25","3:44:33","demo-stopwatch","TOTAL","20.61"  "2008/03/25","3:49:36","demo-stopwatch","FIRSTPAGE","0.641"  "2008/03/25","3:49:39","demo-stopwatch","SUBMITDATA","1.051"  "2008/03/25","3:49:56","demo-stopwatch","STORE","7.841"  "2008/03/25","3:49:56","demo-stopwatch","TOTAL","20.169" Monitoring Station: Heidelberg, Germany

Slide 5: iOpus.com Response Time Data (March 2005) Macro Demo-Stopwatch: Server 1 (iOpus): Houston, Texas FirstPage Store Server 2 (Store): Denver, Colorado SubmitData Total Monitoring Station: Dallas, Texas

Slide 6: Best Practice for Response Time Measurements  iMacros response time measurements always reflects the true user experience as they are measured using a real browser and the original browser plug-ins such as Adobe Flash Player, Silverlight or SUN Java runtime.  Add a CLEAR statement to your macro.  Average Measurements. The "internet speed" can fluctuate from minute to minute even on a fast connection.  Accuracy depends on the accuracy of the PC clock. This applies to all software that does time measurements on a PC.  Under normal conditions the processor speed does not influence the measured response times. Only if the PC is so slow that the web page rendering of the browser is slowed down, will the CPU speed have an influence on the measured response time.

Slide 7: Keyword Assertion Search for a keyword can be done via TAG Create a macro with only two lines: VERSION BUILD=6120125 TAG POS=1 TYPE=B ATTR=TXT:*completed* In this example, we are searching the web page for the first occurrence (POS=1) of the keyword "completed“. The TAG command will test if keyword appeared on website.

Slide 8: Image Assertion Search for an image can be done via the SAVEITEM feature: CLEAR URL GOTO=http://www.iopus.com/imacros/ TAG POS=1 TYPE=IMG ATTR=TXT:Only*version CONTENT=EVENT:SAVEITEM This macro will download an image. If the image is missing on your web page, the macro stops with an “Image not found" error. To make sure that the missing image is not stored in the browser cache, it is recommended that you use the CLEAR command before this test.

Slide 9: Demo: Internet Monitoring  Part1: Record an “Online Shopping Experience” macro at “Sears.com” and use it for response time measurements. Measure response time at various critical points separately, for example when an item is placed into the shopping cart.  Part 2: Make sure the price is displayed correctly  Part 3: Make sure the item image is displayed correctly