Test automation is the use of software to control the execution of tests, the comparison of actual outcomes to predicted outcomes, the setting up of test preconditions, and other test control and test reporting functions. Commonly, test automation involves automating a manual process already in ...
1
vote
1answer
48 views
Is there test inheritance in VisualStudio?
Imagine you have a sequence of web tests in Visual Studio, recorded individually i.e., "Login", "Event A" and "Event B".
To do both "Event A" and "Event B" you need to login. Is there a way for tests ...
1
vote
1answer
120 views
Fitnesse editor with syntax validation?
We use Fitnesse with tens of project-specific fixtures to design the tests. However, writing the correct test is tedious, because of some trivial errors we make:
Syntax errors: unclosed tables, ...
1
vote
1answer
97 views
What is the best practice for testing against modules which collect statistic
We have a distributed application which should be monitored. There are some modules which collect external data (disk usage, free disk space, CPU utilization, memory utilization, etc) and some ...
1
vote
2answers
176 views
What are the best practices for Integration Testing of a middle-ware?
I want to know about the best practices of Integration Testing for a middle-ware product. It includes several backends and also I want to test it over multiple platforms. The features of Clustering is ...
1
vote
4answers
2k views
Deciding a tool for iOS UI automation providing recording and inspection of elements
I'm a complete newbie to automation testing. I am facing problems in the tools that i'm using for testing an iOS native application on iPad.
The tools that I have tried so far and the problems i'm ...
1
vote
1answer
307 views
How can I automate in Selenium IDE for email activation link?
In the send invitation process, the user will get a link in his/her inbox. When the user will click on the link, it will ask for a password and confirm the password.
How can I automate it with ...
1
vote
3answers
2k views
Error while running script selenium RC
I am working on selenium 2.18.0 version with firefox 8.0.1.While executing script i am getting error like
15:52:07.342 INFO - Started HttpContext[/wd,/wd]
15:52:07.347 INFO - Started SocketListener ...
1
vote
3answers
2k views
Automated testing tools for iOS apps [duplicate]
Possible Duplicate:
What are some tools for testing Mobile web apps?
I wanted to know if there are any good automated testing tools that can be used to test iOS apps. Looking for some ...
1
vote
1answer
85 views
Tool to generate test cases for configuration app based on use case variation?
I am making changes to a configuration tool for a web application. The tool allows internal users to configure messages and custom experiences for external users of the webapp.
I have been given a ...
1
vote
1answer
304 views
Selenium - page load timeout
Is it possible to set timeout for page load in Selenium test?
I have a problem, when sometimes test execution freezes on page load (application doesn't load new page, test hangs up), so test needs to ...
1
vote
1answer
125 views
Automated testing in cloud
I have a Windows application using OpenGL and automated E2E test environment based on Sikuli framework. Tests run locally and are not available outside of my company network. As we have two different ...
1
vote
1answer
143 views
What are the building blocks of QTP 10 Automation Object Model
I need to understand QTP Automation Object Model. But I need to quick start just by understanding main building blocks. I understand taking a shortcut is not safe always. Yet, can anyone help me ...
1
vote
1answer
102 views
Tools similar to Google Test for C++ unit testing?
Are there any tools similar to GoogleTest for the purpose of functional testing in C++. I plan to do them as part of Unit Testing and would like to know of other options available so that I can make ...
1
vote
1answer
144 views
Framework and tools for managing testing and monthly releases?
I'm not anywhere close to being an expert on professional QA and testing but I do work with it as part of managing a IT system at work. To be honest, we are not very mature when it comes to using an ...
1
vote
1answer
44 views
Unskipping skipped tests once bugs are fixed?
I'm wondering how others in the industry deal with this. Right now I do this in my tests that have known bugs and aren't worth taking the time to run:
from nose.plugins.skip import SkipTest
def ...
1
vote
1answer
196 views
Best approach/tool to develop an automation suite to test an XML API?
I'm in charge of the automation for a hotels search/book XML API. My experience is mostly with SOATest and a bit of soapUI. I would like to know if there is a better approach to do it, I'm looking to ...
1
vote
3answers
136 views
What is the best way to create an automated test that asserts the precision of a matrix processing algorithm?
I have and automated test that test an algorithm and the output of this test is the percentual precision of the algorithm. Currently our team is trying to make this algorithm more precise, as well as ...
1
vote
1answer
222 views
How can I convince Squish to recognise the menu bar on Mac OS X?
I'm currently recording some python test scripts for a Mac OS X application using Squish for Qt, version 4.0.2.
The menu bar of the AUT works fine if interacted with manually, but for some reason ...
1
vote
1answer
528 views
Questions on Developing TestNG based automation for Java based web services
•
In case of .NET 2.0 ASMX you can post HTTP requests for the web service using HttpWebRequest and HttpWebResponse
•
Is this approach possible for java based web service as well, referring to ...
1
vote
1answer
37 views
how to locate cursors randomly in map
there is a lot of cursors in the map
every time you refresh the map you will get another different cursors with different IDs
so i can't use the IDs :(
i want to click at any cursor, tooltip should ...
1
vote
1answer
32 views
select random cursors on map using selenium ide
I'm using google map api in my site and I want to test the cursors on map using Selenium IDE.
Now I use this code and it works fine:
clickAt > xpath=(//map[@id='gmimap85'])
but it tests only one ...
1
vote
1answer
100 views
SeleniumHQ stuct in Checking Resource aliases
I want to run testsuite from Hudson, for that i have installed seleniumhq plugin and configured in hudson, but when i run the hudson it stuck on "Checking Resource aliases" step.
Started by user ...
1
vote
2answers
70 views
Validate worksheet name using WATiR
How to validate the worksheet name / file name of Excel and CSV files in WATiR?
Because if we save the CSV file in with different name, the worksheet name will also change while in Excel it will ...
1
vote
0answers
39 views
weighing tools/approaches for testing of database components
Currently the way we do this on LedgerSMB is to have SQL scripts which insert records into a test results table. This table is created in a transaction which runs the tests, and the tests always roll ...
1
vote
0answers
33 views
Setting the resolution of the slave used by Network Suite of TestComplete wanted
We are using a Network Suite inside of TestComplete 9 to do distributed testing. We have already setup a project that executes on 2 remote computers, our slaves.
Sometimes the resolution on the slave ...
1
vote
0answers
172 views
How to report test execution method when using @Factory in TestNG?
I am using @Factory annotation from TestNG to create tests dynamically. It will read a property file that contains the list of test cases to be executed and return them.
@Factory
public Object[] ...
1
vote
0answers
225 views
Test execution report in HTML format for MonkeyTalk
MonkeyTalk provides the functionality of running test suites with Ant.
Reference: Running Suites With Ant
I wanted to know if it is possible to generate HTML reports of test execution?
I want to ...
1
vote
0answers
245 views
How can I automate testing of HTTP requests? [duplicate]
Possible Duplicate:
Is there a captureNetworkTraffic implementation in Selenium 2 via webdriver?
I'm using Selenium2/C# to run automated tests of a web app. I need to test the HTTP requests ...
1
vote
0answers
160 views
Open source Clojure test framework that skips rest of test on assertion failure
Imagine a JUnit test that verifies that a method produces a well-formed JSON file. The test might fail because the file contents is badly formed JSON, or it might fail because no file was created at ...
1
vote
0answers
388 views
Selenium RC using Grails unable to open URL
My Selenium RC code is launching the browser but it is taking me to C:\Users\Kanishka\AppData\Local\Temp\customProfileDir3e16427300054effa807e843dd1a332f\core\Blank.html instead of the intended URL.
...
1
vote
1answer
271 views
Is the source code required when using Selenium-RC with Grails?
Can anyone help with using Selenium-RC + Grails? I have used Selenium with Java but had no problem writing the code and launching the browser. But is the source code of my project required when i need ...
1
vote
6answers
407 views
any suggestions on automation tools for mobile application? [duplicate]
Possible Duplicate:
What are some tools for testing Mobile web apps?
Me and my friends have developed an application for all the mobile platforms.
The mobile camera opens immediately ...
0
votes
2answers
845 views
What's the relation between Selenium WebDriver and these other tools?
I've used Selenium IDE to test Drupal (PHP) sites but want to create more advanced tests with loops and such. I hear Selenium WebDriver is all the rage, but when I google it, all these terms pop up ...
0
votes
2answers
189 views
What are strong points of RFT comparing to other test management tools?
I've started to evaluate RFT by getting their trial version, I'd like to hear on the strong points that makes you folks to stick with RFT. I'm using QTP and Silktest now and trying to find how useful ...
0
votes
4answers
72 views
Automated network capture and analysis?
I was curious to know if anyone has done any work on automated network analysis such as starting network traffic capture (to file) before executing some test, perform some test, then stop capture, ...
0
votes
1answer
105 views
What are the things to care for while choosing an automation testing tool?
I am new to software testing field ,I clarified for the need of automation tools What is automation testing and why do we need it?
Now it arises me the following questions
what were the things care ...
0
votes
5answers
402 views
How do fitnesse and selenium work together
I have read about Fitnesse in a number of books but when I look on the web I don't see much activity with it.
And a newbie question - how does fitnesse fit into the Selenium world? Are they ...
0
votes
5answers
358 views
How can I automate Installation, Configurations of our software?
In testing my company's software I do a lot of installations (an .exe file), configurations (two web.config files) and uninstallations on a few servers (Windows Server 2008) during a given release.
...
0
votes
1answer
99 views
How can I automate the testing of flash games?
If I want to automate testing of flash games like car race, bike race bubbleshooter, video slot games or video poker. Is there any open source automation testing tool available for this purpose. I ...
0
votes
1answer
72 views
SpecFlow - test MVC3 Web site with action calls
I'm very new to BDD testing, and would like to ask, is it possible/OK to test ASP MVC3 actions directly (using WebClient) using SpecFlow?
i.e.
Feature: Login
Scenario: Logging in
Given I post ...
0
votes
2answers
108 views
If the position of objects change will the same script work?
I am testing a Java applet with QTP.I am adding the objects in the applet to my object repository.I am able to create an action that works with the objects in Objects Repository.My doubt is if an ...
0
votes
4answers
276 views
What are some good test cases in order to do License Key authentication while software is being installed?
I want to learn about:
What could be the test cases to ensure the test coverage while any proprietary software is being installed using a license key. I wish to avoid (a) re-installation (b) multiple ...
0
votes
2answers
274 views
Suggestions for continuous integration, test and deploy infrastructure for a Ruby on Rails application in Amazon EC2 cloud
I would like to know everyone's opinion on the best tools for setting up a continuous integration, test and deploy infrastructure for a Ruby on Rails web application API in the Amazon EC2 cloud and ...
0
votes
1answer
45 views
How to make Selenium IDE prefer name attribute over id attribute while recording?
How to make Selenium IDE prefer name attribute over id attribute while recording?
This feature is needed when ids are auto generated by web framework.
0
votes
1answer
173 views
Open-source functional testing automation tools for testing Silverlight based applications
I am looking for an open-source functional testing automation tool that supports testing of Silverlight based applications.
To be more specific, the tool should be able to recognize objects within ...
0
votes
1answer
431 views
ITKO LISA-Service Virtualization-Tutorials
We have planned to implement ITKO LISA as a service virtualization tool for creating mock enviroments for testing.What I found lagging is there are no materials for studying/training resources.Is ...
0
votes
1answer
169 views
Press ESC key or click on CANCEL button of print(ctrl+p) dialog box in MAC OS using Selenium RC
I am using Selenium RC to create a framework with JAVA in MAC OS and Safari browser. Now to click on the CANCEL button in the safari browser print dialog box, I am using apple script. In the same ...
0
votes
3answers
2k views
how to start work with selenium web driver any reference site for selenium web driver? [duplicate]
Possible Duplicate:
Where can I find information on getting started with Selenium 2
I want to learn selenium web driver from the scratch. any one suggest me the reference site for selenium ...
0
votes
1answer
251 views
Service layer automation using Fitnesse
Does anybody used Fitnesse before? I am new to Fitnesse trying to set the automation framework at the Service layer. Any idea of how to do it in Fitnesse and any resources would be greatly ...
0
votes
0answers
14 views
Mocking for MXUnit
I'm fairly new to Coldfusion; at my new position, we're using MXUnit for unit testing our service library, but so far we're not mocking out the database (so we're testing against live data). I want to ...
