Posted by Albert Gareev on Mar 30, 2011
Join To Earn 10x Bonus Attacking Passwords Good to Check, Worth to Explore Documented == Unambiguous? ...
Posted by Albert Gareev on Mar 21, 2011
WordPress blogging engine has “Stats” plugin. Very useful, helps gathering a lot of feedback. There are also many other plugins, relying on the data gathered by WordPress Stats. Amongst them I use “Popular Posts”. As many of bloggers noticed last week, there was an outage of WordPress Stats server. This impacted not only site stats [...] ...
Posted by Albert Gareev on Mar 16, 2011
The Mission Weekend Testing Americas session N8 was initially planned as a mini-project: explore and map the product, deliver a test plan and test results. That’s ambitious already for 90 minutes of work! However, we took that over the edge – and succeeded. Today’s session is dedicated to session-based exploratory test management. The product we [...] ...
Posted by Albert Gareev on Mar 14, 2011
Parent page: Generating Test Reports Today I continue with more complex examples using previously demonstrated XSL parsing nodes grouped into sub-templates. Here’s our XML record simulating log data of a test session. XML Source <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href=".\LogView2.xsl"?> <log> <step type="#note"> ...
Posted by Albert Gareev on Mar 04, 2011
Parent page: Generating Test Reports Today I present XML Tree to HTML Table transformation example. Here’s our XML record simulating logged test steps. XML Source <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href=".\Tree2Table.xsl"?> <log> <step type="GUI Step"> <description>Pasted data [User1234] in edit box [Username] ...
Posted by Albert Gareev on Mar 03, 2011
Parent page: Generating Test Reports Today I present example on dynamically building HTML nodes, with XSL, and from XML data. Here’s our XML record simulating log data of a test session. XML Source <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href=".\LogView1.xsl"?> <log> <step type="GUI Step"> <time>21/04/2011 11:45:31 AM</time> ...
Posted by Albert Gareev on Mar 02, 2011
Parent page: Generating Test Reports Today I present example of an HTML Table populated with XML data. Here’s our XML record simulating stats data of a test session. XML Source <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href=".\StatsTable.xsl"?> <log> <description>Test login page</description> <reporter>John Doe</reporter> ...
Posted by Albert Gareev on Mar 01, 2011
Parent page: Generating Test Reports The Approach The previous post sets a lot of requirements altogether. Let’s try now to put some answers. How we can have a free, portable, yet powerful viewer? If we go with a web-page format, we can use a web browser for that purpose. If we go with XML format [...] ...