automated-tests

Has anyone used Steve Sanderson’s MvcIntegrationTestFramework?

I was looking into additional ways to test ASP.NET MVC applications and ran into Steve Sanderson’s MvcIntegrationTestFramework. The approach looks rather promising but I was wondering if anyone had any actual experience to share. ...

Automated Testing for C/C++ GUI Applications.

I have a GUI application written in C/C++ using gcc. I need some recommendations for writing an automated test system for it. What tools/scripting should be used? The application runs on Windows. ...

AccExplorer doesn't find new controls / thinks old controls are still around

Our application has many controls that are created dynamically. For example, a navigation pane contains groups of links that change as the user navigates through the app. The first time I use AccExplorer to select these links, it finds them perfectly. However, after I navigate to another page, AccExplorer can't see the links in the up...

Who writes the automated UI tests? Developers or Testers?

We're in the initial stages of a large project, and have decided that some form of automated UI testing is likely going to be useful for us, but have not yet sorted out exactly how this is going to work... The primary goal is to automate a basic install and run-through of the app, so if a developer causes a major breakage (eg: app won't...

What is the best method for storing test cases that your xunit tests load from ?

This is a "design/architecture" question and so you don't need to provide me technical details. I can find examples on the internet all day long that show how to run a xunit unit test, log test results, and how to show if it succeeds or fails but every example on the internet is hard coded and nobody shows examples of how you store your...

Software testing

Hey In my workplace we use scenario based testing. However whenever somethign is fixed or a new patch is added new scenarios are added as a result the list keeps getting longer and longer and takes 3 days plus to test the application. Is there a way to do proper testing without taking a long long time? What do you use? Thanks ...

How to create structured automatic testing with selenium (junit or testng)? What is your best practice for this?

I have written tests that are using selenium for functional testing. I'm using Java. I would like to be able to create structure between tests. Is it possible to do it with jUnit or TestNG? Would like to be able to create test structure that will produce report like this: Top test FAIL - Module1 test PASS -- Module1Class1 test PASS -- ...

Open source test report generation tool

Background The QA department where I work has a lot of automated blackbox tests that interact with our applications via the GUI and the command line. Currently, the automated tests output their results to standard out where we then manually enter the final pass/fail result into a spreadsheet. We would prefer to have a system where th...

Testing bash scripts

We have a system that has some bash scripts running besides Java code. Since we are trying to "Test Everything That Could Possibly Break" and those bash scripts may break, we want to test them. The problem is it is hard to test the scripts. Is there a way or a best practice to test bash scripts? Or should we quit using bash scripts and...

Which key is used in CR-Tools to stop recording or playback ?

Or: Is there a standard key (on the keyboard) which capture / replay tools use to stop recording and playback ? Tools like Rational Robot, SQA-Robot (I don't if thats the same.), TOSCA, WinRunner, etc. ... ...

CMake and CTest question

In the test that I want to run using CTest I should be adding the test that I want to run, with the following command: add_test(TestName ExeName) problem is what if I want to supply an argument to the TestName, where do I put it? how do I run ctest individually without cmake in unix command line in this context? ...

Purpose of automation testing - Feasibility

what is the purpose of automation testing? According to me the main purpose is Fast Removes repetitive manual work My main query comes here. If after automation if it only reduces repetitive manual work but it is taking almost the same time as it was taking before then is automation feasible in this case. As to make the testing aut...

DRY for JMeter tests

Is there a way to modularize JMeter tests. I have recorded several use cases for our application. Each of them is in a separate thread group in the same test plan. To control the workflow I wrote some primitives (e.g. postprocessor elements) that are used in many of these thread groups. Is there a way not to copy these elements into e...

Simple standalone website checking tool

Background: We run a content management platform that hosts 20+ separate websites - some intranets and some internet sites - so that have different end points routed for internal or external access. We are currently upgrading our infrastructure - including software versions, hardware, changes of IP/VIP/DNS entries etc which affects all...

Automated testing of DotNetBar Controls

We have been asked to test a .NET Application developed using DevComponents DotNetBar controls using automated testing tools. This is a WinForms application using Ribbon, TabStrip etc. controls from the DotNetBar suite. I tried automating this application using Microsoft UI Automation Library and the White Framework, but no success. Ha...

Automated GUI Testing .NET CF (Windows Mobile 5)

My company is looking into using automated GUI testing for our current app before proceeding to alpha. Our current main focus is robustness testing, one way we want to achieve this is automated UI testing that can be repeated over several hours/days. For our desktop version we've decided on AutomationElement, and I've seen several free...

Problem with WATIJ.

I have logged in to a website by using WATIJ jar file in java. Now I want to get the page source (HTML code) of the webpage that appeared after login. I have IE instance already. ...

How can I use Perl to test C programs?

I'm looking for some tutorials showing how I could test C programs by writing Perl programs to automate testing. Basically I want to learn automation testing with Perl programs. Can anyone kindly share such tutorials or any experiences of yours which can help me kick-start this process? ...

Get Elements By Attributes

Hi people, i will be short. As far as i know watir library provides two methods for getting html elements. Almost for each element (div, button, table, li, etc) watir provides two methods: . One is the 'singular' method which gets only one specific element. For example: watir_instance.div(:id,'my_div_id') watir_instance.link(:href,'m...

Techniques for assessing team test confidence ?

I am trying to determine what level of confidence my development team has in our automated test base (unit, integration, webtest). I would optimally like to get sensible answers to questions like: What refactorings do you expect to be covered/not covered by tests ? Would you trust a green build to auto-deploy for acceptance test enviro...