lisacrispin.blogspot.com
Lisa Crispin, Agile Testing Practitioner and Coach: January 2010
http://lisacrispin.blogspot.com/2010_01_01_archive.html
Lisa Crispin, Agile Testing Practitioner and Coach. Exploring good ways to do testing on agile teams, and how testers help teams deliver maximum value to the business. Thursday, January 14, 2010. Please Visit My New Site. It's not really all that new, but I'm having trouble getting it to show up in Google searches! Subscribe to: Posts (Atom). Agile Testing: A Practical Guide for Testers and Agile Teams. Is now in its fifth printing! Please visit lisacrispin.com. View my complete profile.
lisacrispin.blogspot.com
Lisa Crispin, Agile Testing Practitioner and Coach: September 2008
http://lisacrispin.blogspot.com/2008_09_01_archive.html
Lisa Crispin, Agile Testing Practitioner and Coach. Exploring good ways to do testing on agile teams, and how testers help teams deliver maximum value to the business. Wednesday, September 17, 2008. Gojko Adzic has been doing some good writing on acceptance testing in agile development. See his article here:. Here's an example of the business-facing testing activities we do during the iteration. I wish I could do a nice graphic like Gojko. Day 2-3 of iteration - Write high level test cases, which involve...
agileroots.com
Agile Roots » Working Together » Janet Gregory
http://www.agileroots.com/speaker/janet-gregory
Do Testers Need to Code to be Useful? An agile testing coach and practitioner, Janet Gregory is the co-author of. Agile Testing: A Practical Guide for Testers and Agile Teams. More Agile Testing: Learning Journeys for the Whole Team. And a contributor to. 97 Things Every Programmer Should Know. Janet specializes in showing agile teams how testers can add value in areas beyond critiquing the product; for example, guiding development with business-facing tests. Software Test & Performance Magazine.
lisacrispin.blogspot.com
Lisa Crispin, Agile Testing Practitioner and Coach: November 2008
http://lisacrispin.blogspot.com/2008_11_01_archive.html
Lisa Crispin, Agile Testing Practitioner and Coach. Exploring good ways to do testing on agile teams, and how testers help teams deliver maximum value to the business. Tuesday, November 18, 2008. Agile Vancouver's Much Ado about Agile conference was terrific. Sold out at 220 participants. Agile Vancouver held "Agile 101" tutorials before the conference, so everyone in our tutorial and track sessions was pretty savvy. Lots of agile practitioners doing cool things in BC! What does the team do that makes yo...
lisacrispin.blogspot.com
Lisa Crispin, Agile Testing Practitioner and Coach: Agile Testing Realities
http://lisacrispin.blogspot.com/2008/12/agile-testing-realities.html
Lisa Crispin, Agile Testing Practitioner and Coach. Exploring good ways to do testing on agile teams, and how testers help teams deliver maximum value to the business. Tuesday, December 16, 2008. Today I participated in an Agile Testing Realities live Q&A discussion with Elisabeth Hendrickson, Tauseef Kahn and Tom Wissink. It was fun and interesting, especially hearing Tom's experiences working on huge government projects (how fun would it be to work on the Hubble Telescope? Unit tests have the best ROI,...
qathoughts.wordpress.com
Generating a Unique Transaction ID Dynamically in your PUT Request. | : : Software Testing & Tools : :
https://qathoughts.wordpress.com/2015/06/16/generating-a-unique-transaction-id-dynamically-in-your-put-request
Software Testing and Tools : :. Tools tips tricks solutions hacks and frameworks : :. Generating a Unique Transaction ID Dynamically in your PUT Request. Generating a unique transaction id in your PUT Request. Let’s take an example where you want to generate a unique transaction id for a PUT Request. 8211; Method: PUT. 8211; EndPoint: https:/ test.example.com.au:1990. 8211; Resource: /api/members/12345678/points. 8211; Media Type: application/json. Your PUT Request will look something like this:. Using R...
qathoughts.wordpress.com
SoapUI – Asserting JSON Response using JSONSlurper | : : Software Testing & Tools : :
https://qathoughts.wordpress.com/2015/06/01/soapui-asserting-json-response-using-jsonslurper
Software Testing and Tools : :. Tools tips tricks solutions hacks and frameworks : :. SoapUI – Asserting JSON Response using JSONSlurper. SoapUI is a great tool for testing SOAP services and manipulating XML responses. But what about REST services and JSON Responses? SoapUI cannot convert JSON to XML because it will break the XML naming rules. As far as testing is concerned, you cannot use XPath to assert a JSON Response. The alternative is to use JSONPath. To help locate the element you want to assert.
qathoughts.wordpress.com
: : GTAC 2011 | : : Software Testing & Tools : :
https://qathoughts.wordpress.com/google-test-automation-conference-2011
Software Testing and Tools : :. Tools tips tricks solutions hacks and frameworks : :. Google Test Automation Conference (GTAC 2011). Automate Your Tests with Geb, Spock and Groovy. June 26, 2016. June 26, 2016. Google Test Automation Conference 2015. November 25, 2015. Using Random and BeanShell function in your JMeter Script. June 17, 2015. Generating a Unique Transaction ID Dynamically in your PUT Request. June 16, 2015. Inserting Dynamic Date and Time value in SoapUI using Groovy. June 11, 2015. Thoug...
qathoughts.wordpress.com
Using __Random and __BeanShell function in your JMeter Script | : : Software Testing & Tools : :
https://qathoughts.wordpress.com/2015/06/17/using-__random-and-__beanshell-function-in-your-jmeter-script
Software Testing and Tools : :. Tools tips tricks solutions hacks and frameworks : :. Using Random and BeanShell function in your JMeter Script. EndPoint: https:/ test.example.com.au:1990. In your Body Data tab, you’ll have something like this:. State:M, Action:Earned, UniqueID:${ Random(1,10000000)}, DateTime:${ BeanShell(new java.text.SimpleDateFormat(MM/dd/yyyy HH:mm:ss).format(new Date() )}, PointDetail: { Type:VISA, DollarValue:1700 } }. Example: Using an HTTP Request Sampler in JMeter. June 17, 2015.