automated-tests

keyword driven test automation framework

Hi is there any keyword driven test automation framework (vbscript) with quick test professional 9.5 available? Can anybody give me any downloadable link regards sethu ...

Performance testing best practices when doing TDD?

I'm working on a project which is in serious need of some performance tuning. How do I write a test that fails if my optimizations do not in improve the speed of the program? To elaborate a bit: The problem is not discovering which parts to optimize. I can use various profiling and benchmarking tools for that. The problem is using au...

How to automate a Siebel GUI?

I'm looking for a way to automate a Siebel Retail 8.1 GUI (High Interactivity) for functional tests. The only option I found so far is using QTP from HP, which is quite expensive. Do you know any alternatives, or do you have any experiences with QTP? ...

What are the pros and cons of automated Unit Tests vs automated Integration tests?

Recently we have been adding automated tests to our existing java applications. What we have The majority of these tests are integration tests, which may cover a stack of calls like:- HTTP post into a servlet The servlet validates the request and calls the business layer The business layer does a bunch of stuff via hibernate etc and ...

Integration test framework?

I am looking for a test framework to cover our black box integration tests. We need something that is scriptable by non developers (aka not C# unit test type stuff). The initial scenarios I have in mind are: Restore known DB Run sql agent job (ETL) Execute validation sql scripts against output DB and Run msi install Check exista...

Are there any Java libraries which I can use for automated testing of Windows GUIs?

Currently I am doing automated integration testing using FitNesse (Java) and have successfully plugged-in Watij to access a web-based application. I would like to extend this to also drive Windows GUI (non-Java) applications. To this end, are there any Java libraries available which I can use in a similar way? ...

Using SendMessage for Simulating User Mouse Clicks

I need to use SendMessage fro simulating user clicks in a target program as SendMessage blocks until the event that it triggers is finished processing. The reason for this is that this blocking gives opportunity to detect if any dialogs have opened up as a result of the clicking. My problem currently is that although I can get the clic...

Android Service Testing

How to test my IBinder object that Service return on onBind ? ...

Shoulda, Rails Tests , and Autotest

I'm trying to model my tests after the great work that the Thougtbot guys have done. They seem to use the test framework built into Rails Shoulda. Great. I have been hearing a lot about Autotest - that its magical-ness should make things easier.... I expected that things would 'just work' if I installed it. My rake test:units already a...

How do I do webtesting in Perl for pages that require JavaScript?

I have found these two modules that purport to be able to puppet string browsers, but I have no experience with them, but my current test suite uses WWW::Mechanize. Does anybody have any information about these modules, or other methods of testing pages from Perl that require JavaScript? To clarify, I am running my tests under Linux (U...

Automated Web UI Testing

What are the good automated web UI testing tools? I want to be able to use it in the .Net world - but it doesn't have to written in .net. Features such as a record mode, integration into build process\ continuous integration would be nice. Im going to look at: Watir Selenium Are there any others I should look at? ...

QTP: Getting the value of a checkbox

I want to know that how many checkboxes are present on the home page of www.gmail.com and also I want to check the checkbox is checked or not ..... My code is.... Set obj= Description.Create() obj("name").value="PersistentCookie" obj("html tag").value="INPUT" obj("type").value="checkbox" Set a = Browser("name:=Gmail.*","title:=Gmail.*...

.Net Test Automation

How to generate click on link in C# for automation testing? ...

Automated GUI Testing: Meeting Us Halfway

I've been tasked with developing a system for automated GUI testing and I could use some advice. As luck would have it, we are in the midst of a major redesign of our GUI and the developers doing the work are open to making their code more friendly to automation. My problem is that I'm not sure what to ask them to add. Whatever hooks are...

OrderedTest- Not keeping valuse from previous Test. - visualstudio208 - Unit Testing.

Hi, I am trying to Unit Test the application using VSTS 2008 unit Testing. My Problem is: I want to invoke two test case in an order. I am using the ordered Test case feature of VSTS 2008 for this. Problem i facing is I increment the value of one variable(X) in TestA and on the basis of that value i am chekcing something in TestB. But wh...

Is there a good testing tool for web interfaces with support of VBScript?

I have to performs testing on an old legacy tools that's web based and make a huge use of VBScript, rather than JavaScript. So, yes, it's a IE-only tool. Usually, I tend to use WebTest to performs such testing, but it does not support VBScript, making it unusable in that case. So, is there a testing framework that support VBScript? (pl...

Test Driven Development vs Automated Theorem Proving

One thing I've come to be interested in in digital logic/architecture design is Automated Theorem Proving to verify, for example, a floating point multiplication module. Unit tests are handy, but its almost intractable to try to test (brute-force) every possible input to a floating-point module. Instead, you find either a proof for (1)...

Design by Contract in C for use in Automated Theorem Proving

Hello; I'm working on a couple of C projects and I'd like to use automated theorem proving to validate the code. Ideally I'd just like to use the ATP to validate the functions contracts. Is there any functionality in C/gcc or external software/packages/etc that would enable design-by-contract style coding? If not then thats just incen...

how to do automated testing on forms using captcha ?

how to do automated testing on forms using captcha ? I am using selenium to create tests ..I got to go past a captcha test and verify the next page that comes....... ...

How to validate deployment packages created by msbuild? (preferably using mstest or nunit)

Our msbuild process creates a variety of zip packages for deployment (mostly web sites, but other things as well). We have a variety of recurring problems that keep sneaking back - files included that shouldn't be, missing resources. This screams for automated validation. The criteria to test for are simple Validation of foosite package...