| bio | website | |
|---|---|---|
| location | Austin, TX | |
| age | ||
| visits | member for | 2 years |
| seen | 23 hours ago | |
| stats | profile views | 109 |
|
May 9 |
comment |
Any good test plan/cycles or experiences without using crowdsourcing? You may want to search for "combinatorial testing". |
|
May 7 |
comment |
How to Check my pc is having internet connection using java The above code will fail if your NIC is up but Google, your router, or your ISP is down. |
|
May 2 |
comment |
how to locate cursors randomly in map Mai, are you just making an observation about the dynamic nature of IDs in maps, or did you intend to ask a question? |
|
May 2 |
comment |
Selenium Webdriver | Unable to locate element error It may help for you to specify the error message. |
|
May 1 |
comment |
Looking for growth in automation @Joe Strazzere Can you use Selenium to test Windows applications? Or did I misunderstand the question? |
|
Apr 30 |
comment |
Recommendations for code coverage tools? @Shantonu I think Sam was asking about tools that measure how much of the code under test is executed. The packages you described are frameworks for organizing and executing automated tests. To see the difference, try comparing ncover.com to nunit.org. |
|
Apr 28 |
comment |
Crowdfunded feature request system - would it make users hate me? This is an exact duplicate of ux.stackexchange.com/questions/38777/… |
|
Apr 20 |
comment |
What are the most common mistakes student programmers make? I think this is a fine question to ask, but it does not have much to do with QA or testing. Can someone migrate this over to programmers.stackexchange.com? |
|
Apr 18 |
comment |
How do I automate “service-level” testing for a GUI app @dzieciou Fair point. I answered the question from a test-follows-code perspective. From a TDD perspective, where the test acts as a requirement, your comments make sense. |
|
Apr 17 |
comment |
How do I automate “service-level” testing for a GUI app I don't know what you mean by "unit test project" -- is that an Eclipse term? In any case, I will update my answer to address "accessing the code". |
|
Apr 1 |
comment |
Is it worth having one set of tests for both functional and performance testing? There is some tangential discussion about that at sqa.stackexchange.com/questions/5389/…. |
|
Mar 7 |
comment |
Load Testing Ajax application A recording proxy sitting between the browser and server ought to capture Ajax requests, but of course there is no guarantee the Ajax requests will be valid during playback. |
|
Mar 1 |
comment |
Radiobutton group with NO default option: bug / acceptable / it depends? @Edu Agreed it is important -- but not relevant to SQA. Please open a question in the meta section if you want to discuss this further. |
|
Mar 1 |
comment |
Radiobutton group with NO default option: bug / acceptable / it depends? Agreed it may be a bug, but SQA is not a forum about product requirements. StackExchange has a usability forum, where people can answer the question, "What should be?". Here, we focus on "How do we test whether what is matches what should be?" And now this is a meta-topic. Feel free to post a Meta question about this. |
|
Mar 1 |
comment |
Radiobutton group with NO default option: bug / acceptable / it depends? This is a fine thing to ask, but I think it is more about usability than testing. |
|
Feb 22 |
comment |
Copying Production Data to a QA Environment That sounds a lot like what we've done at my last two jobs. It took the better part of a day to scrub a production backup at my last job, but the data was invaluable. For example, by analyzing the database I was able to determine which of hundreds paths were actually getting used in a complicated workflow, and therefore which were the most important for us to test. That analysis converted an unmanageable test problem into a manageable one. |
|
Feb 12 |
comment |
Issue tracker that supports geo location I do not understand how this relates to software testing, aside from the fact that testers tend to use an issue tracking system with different features than what you described. Have you tried the GIS stackexchange site? |
|
Feb 8 |
comment |
Should A Formal Test Plan For Dynamic String Testing Include All Combinations? If nothing slee, contemplating an allpairs strategy forces you to think about how variables related to each other: which are independent, which are dependent, and so on. Even if you eventually choose not to use allpairs, the analysis will help you to make smarter decisions about how you test. |
|
Feb 4 |
comment |
Tool to color-highlight important phrases in log Is there a fixed number of special phrases or do you need to match them with a regular expression? |
|
Jan 31 |
comment |
Is there load/stress testing software that can be used for Ajax calls? Can you elaborate on your claim that JMeter and Grinder do not perform AJAX functions? An AJAX request boils down to an HTTP GET or POST request. |