Posted by Albert Gareev on Jan 27, 2011
This is my second post on the testing challenge. When I was thinking of the main idea of the challenge, I thought of it as “testing the envisioned product”. Yet, while preparing for today’s post, I wanted to reference one of Michael Bolton‘s articles, about testing in retrospective, and the idea of name “testing in […] ...
Posted by Albert Gareev on Jan 25, 2011
I continue with the first part of a mission from Weekend Testing Americas session #5. This was an educational exercise. What we had? A simplistic environment It’s a square. It has finite size. Objects, contained in it, are static – they never change their behavior. 5 commands to use 5 simple, non-abstract commands. Go […] ...
Posted by Albert Gareev on Jan 18, 2011
Last Saturday I joined Weekend Testing Americas session #5 as a “special guest” tester, introducing testing challenge I prepared under Michael Larsen‘s revision to fit WT environment and conditions. For those, who have not heard of Weekend Testing: it’s an online event, where testers gather up and practice their craft in collaboration. As it’s time […] ...
Posted by Albert Gareev on Jan 11, 2011
Once a year I do something with my blog. Collate, update, migrate, clean-up, migrate, collate, … About 12 months ago I registered a domain name and migrated my blog from the free WordPress hosting. I purchased a lightweight theme, added some widgets, put it all together, and even done some fixing on my own. The […] ...
Posted by Albert Gareev on Jan 06, 2011
Close/Terminate Specified Process Parent page: Service Functions – DotNetFactory (QTP, VBScript) Description Create an instance of Process object through DotNetFactory – search for local processes by name – iterate through the returned array and close one by one. First attempt – “gentle” close (via CloseMainWindow()). WaitForExit() gives a process some time to finalize, you may customize […] ...
Posted by Albert Gareev on Jan 04, 2011
Check If a Process Exists in Memory Parent page: Service Functions – DotNetFactory (QTP, VBScript) Description Create an instance of Process object through DotNetFactory – search for local processes by name – return result as boolean. Note. Name is case-insensitive but no wildcards supported. Implementation Examples ...