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 ...

learn more… | top users | synonyms

0
votes
1answer
10 views

Ruby on Rails: more verbose tests

This test keeps failing and I don't know why: test "correctly formatted profile_name2" do user = User.new(first_name: 'Jim', last_name: 'Johnson', email: 'jim@teamtreehouse.com', password: ...
0
votes
0answers
6 views

Automating unit testing for C and Objective C

My code is basically divided into 2 parts. Most part is written in Objective C (using Foundation) and remaining in pure C (Daemons etc). I wanted to add test framework for my project. The framework ...
0
votes
2answers
18 views

Rails integration tests. Testing for actual pages

When using automated tests to test that my custom routes work, all I do is this: test "that /logout route opens the logout page" do get '/logout' assert_response :success end or test ...
0
votes
2answers
23 views

Test case management and selenium?

Just wondering how other people manage their test cases that are written for selenium test automation? I've been investigating maybe integrating with testlink to show the results and all, but I ...
2
votes
2answers
18 views

How to Catch up On Tests for Rails Site

I learned Rails to create a website and the basic version is up and running. Unfortunately, I only wrote a couple of tests for my code. What should I do now to get test coverage for my code? It will ...
0
votes
0answers
12 views

Need resources on test automation with Visual Studio 2010 (C#) [closed]

Can anyone suggest a good resource to learn to automate web testing with Visual Studio 2010 (C# language). Thanks in advance.
0
votes
2answers
57 views

How can I click on a button specific to its column name for different rows on a webtable

How can do I click on Add button using the specific name from Column1 for different rows on a webtable using selenium webdriver. The webtable is as Row 1|column1| Column2| Add Button Row ...
0
votes
2answers
40 views

How to write sorting of strings with some additional rules

I have a problem with the testing sort strings with an addition conditions. Table contains a column which contains some string. The strings can be sorted in alphabetical order. But there are ...
1
vote
0answers
16 views

How can I test a lightbox-driven UI in an automated fashion?

I am a tester and I use crossbrowsertesting.com (not a plug; just the site I signed up for) and the developers building the web app (on a Drupal platform) used lightbox to access some features. So, ...
3
votes
2answers
85 views

How can I automatically running a large amount of perl scripts?

I need to run over 100 perl scripts (written by the former employee) on Windows for our system stability testing. Each script has several functions, and each function sends certain of linux commands ...
0
votes
0answers
11 views

How do I check if a WatIn parent element 3 levels up is Visible?

So I have some HTML surrounding a field like this : <div class="form-row style="display: none; "> <label class="fld-lbl" for="Blah">Blah</label> <div class="fld"> ...
0
votes
1answer
10 views

how can i fill in using xpath in cucumber rails

i have a scenario where all the text fields are having common ids.i want to fill in those using xpath as i can access them only using contains method of xpath .for eg: tr[td//text()[contains(., ...
0
votes
1answer
29 views

Interface Android robotium testing with Teamcity

As this was not answered (Maybe did I not find it) previously, I investigated on the following question : How to perform automated functional tests on Android devices with robotium, and report them ...
0
votes
1answer
21 views

Recording Java code in Sahi

I have installed Sahi Pro 5 on Windows 7. I am able to record my tests as .sah extension which is saved at sahi_pro/userdata/scripts. I am also able to play that file. As I'm familiar with Java, I ...
3
votes
1answer
78 views

Why does smallCheck's `Series` class have two types in the constructor?

This question is related to my other question about smallCheck's Test.SmallCheck.Series class. When I try to define an instance of the class Serial in the following natural way (suggested to me by an ...
4
votes
2answers
99 views

How to use SmallCheck in Haskell?

I am trying to use SmallCheck to test a Haskell program, but I cannot understand how to use the library to test my own data types. Apparently, I need to use the Test.SmallCheck.Series. However, I find ...
1
vote
1answer
33 views

Is it possible to test Responsive Web Design application with Sahi?

I'm testing a Responsive Web Design application now. I'm doing Manual testing on Firefox, Chrome and IE using Web Developer Tool. I like to automate the testing. Is it possible to automate Responsive ...
0
votes
2answers
11 views

aggregate the reports from different robot testsuites

I have different test suites in different directories. I use a script to run all these tests in one shot. Now I want to view the report of all these test suites in some aggregated way. What is the ...
0
votes
0answers
22 views

Automated tests using MessageBox with MessageBoxButtons.YesNoCancel

I'm using the TestStack.White framework for a WinForms .Net 2.0 C# application's coded automated regression tests. I have no problem handling OK/Cancel message boxes (MessageBox.Show(...)) but I'm ...
0
votes
1answer
30 views

Unable to mock GAE userservice

I am trying to mock the gae user service for writing unit tests and couldn't get the following code to work. My test class is as below. public class AuthenticationTest { private final ...
1
vote
1answer
18 views

for each element with behat or codeception

I want to test a website which has a dynamic menustructure. I want to loop through all menuitems and run the same series of test on every page. We're talking about 100+ pages that change reguraly. I ...
0
votes
1answer
51 views

VS2012 assert helper function - test runner should not track in my function

During testing I have several Assert helper functions specific to the project. For example, I have to often check whether two IEnumerables are equivalent (exactly same content by reference, not ...
0
votes
2answers
48 views

How to locate search links in google in Selenium for testing

I am trying to search Google for Selenium, then run down the list of links by clicking each one, printing the page title, then navigating back. List<WebElement> linkElements = ...
0
votes
0answers
7 views

Property view pane of Test Method

In VS2010 I could view the Test View window, right-click a test method, and select properties (or just highlight a test method in the Test View and press F4). I've upgraded to VS2012 (Update 2) and ...
0
votes
0answers
19 views

How to organize and configure tests: unittests and integration

I run into a problem with the configuration of my tests. Current setup: src package1 package2 tests test_package1 test_unit.py test_package2 ... regressionCar test_regression.py There ...
0
votes
0answers
29 views

How to publish results from hprof in Jenkins ?

I want to add performance testing to Jenkins. I need to do everything from cmd. So i found hprof which get me file with results. How to publish these results in jenkins? I don't want to add result ...
0
votes
1answer
32 views

ANT build fails and gives classNotFoundExceeption in html report

After doing so many trial and errors on "How ANT tag works ?", I decided to write my own custom build xml file for the testcases that was written in Java and integrated with JUnit. Unfortunately my ...
1
vote
1answer
36 views

How to test an email confirmation loop

I want to create an automated test that will do the following for a production environment: 1. Fill out signup form. 2. Wait for and fetch confirmation email (from a gmail account). 3. Open the ...
-1
votes
0answers
45 views

Interview questions topic (automated test code,test driven development environment) [closed]

I have been called for an interview recently and they asked questions that I didn't understand which are: Do I have experience in writing automated test code? Have I worked in a test driven ...
0
votes
1answer
16 views

Is it possible to user cucumber with KIF?

We are deciding on which framework to use to test our iOS app. We are mainly deciding between Frank and KIF. I know Frank and Calabash can use cucumber. I want to know if there is a way to use KIF ...
0
votes
0answers
17 views

Web.Config transformation during performace test on VisualStudio

Is there a way to change a web.config parameter (ConnectionString) during a performance test batch (load test) automattically, in order to have result sets from differet databases? If so, how? I ...
0
votes
1answer
24 views

How to install Sahi Pro on Windows 7?

I am very novice and beginner of Sahi Automation Tool. I have downloaded "install_sahi_pro_v452_20130205.jar" . After double clicking on that jar file it was opened on WinRAR explorer. How can I ...
0
votes
1answer
59 views

Python webdriver scroll to the element on web page

I am working on automating test script using Python Selenium Webdriver. I have buttons on the web page, but they are not visible in default window. We have to scroll the web page. Can you please ...
0
votes
1answer
31 views

Questions about the test manager 2012

I'm doing tests with the test manager 2012 on windows 7 and when road testing where it will be tested over a browser test manager I am not able to run the script already written, it does not appear ...
0
votes
2answers
18 views

running multiple ruby test methods from a test file

I am using the following command to run a test method from the test file: ./bundle exec ruby -Ilib test_file.rb -n test_method Can some one please suggest as how to proceed, if I need to run ...
0
votes
1answer
59 views

How do I use Selenium in Perl to click a checkbox with a dynamic value next to a known string?

Here's some hastily-scrubbed sample source from my page: <tr><td nowrap><input type="checkbox" name="enrollments" value="1478">meta</td></tr> <tr><td ...
2
votes
2answers
68 views

Testing WebAPI with a client within a transactionScope?

Question Is there any way to specify a connection for the transactionscope so that the effects of this "out-of-context" test can be rolled back? Background I'm using RestSharp to test WebAPI ...
0
votes
0answers
100 views

Can't Start IE Webdriver on Windows 7

I'm trying to automated some tests on IE10 from a Windows 7 machine but I can't seem to launch the driver. The relevant code is as as follows: public WebDriver getLocalDriver(String browserName) { ...
1
vote
1answer
270 views

org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms

I'm trying to run a Junit Test case which i exported from Selenium IDE. Im getting above exception.I'm using Windows XP,Firefox 20.0.1,and using selenium-server-standalone-2.28.0.jar.Upon run, a blank ...
0
votes
0answers
58 views

Trying to check web content on android during Robotium test

My application is service running on background and making changes to network traffic. I want to make a test with Robotium calling for web source and checking the the page. Here is my code for calling ...
0
votes
1answer
21 views

If I use Selenium WebDriver in java, do I need the source code of the application to test?

Can I run test using Selenium 2 without the source code of the application to test?. I want to use Selenium with Java (Eclipse).
0
votes
0answers
35 views

Android UiAutomator on multiple devices, reacting to one another

Anyone got the Android uiautomator to run with multiple devices, at the same time, but doing different things? I mean, I'd like my test to start up both devices and apps and then device A does ...
0
votes
0answers
48 views

Jasmine-javascript Testing the new open browser tab

I am really new to Jasmine testing language. I am trying to test some thing like this. (The following code works fine but my situation is a little bit different) describe('Phone list view', ...
1
vote
1answer
35 views

How to send random user events to a WPF application

I'd like to create a "fuzz test" for my wpf application where it gets to handle an onslaught of random user events. Any idea on how this can be done. I see tools like Ranorex where i can automate ...
2
votes
1answer
61 views

Java / Junit: how to test if an external program/process/application is running?

I have a Junit / Silkuli test that runs on windows 7 and is dependent on an external program already running. How can I check if the external program is running from inside the test?
1
vote
1answer
55 views

QTP 11 Extensibility developing (.NET sdk) - calling Record() on the recorder object fails

As far as I looked, there's no answered question about QTP's Ext. sdk on stackoverflow (and almost anywhere else on the net; there isn't even a appropriated tag for it...), so I'm aware it's unlikely ...
0
votes
1answer
22 views

CakePHP core tests not working on IIS

I'm following the steps (from http://book.cakephp.org/2.0/en/development/testing.html) to set up Testing on a CakePHP install. Viewing the core tests is supposed to be as simple as appending ...
1
vote
0answers
64 views

Unit testing ExtJS code with Hudson and Siesta

I'm writing rich clients using ExtJS and Bryntum's Siesta testing framework. In justifying the purchase of a standard or premium commercial license, I'd like to find out what the Hudson continuous ...
0
votes
1answer
134 views

Selenium and Soap UI automation for REST and JSON web services

I have to do JSON web services automation. Can you suggest what is the best approach for this scenario. Every think I tried to depict on image. Can you please let me know what are the best tools ...
0
votes
0answers
32 views

How to record Click and corresponding ajax call on Image map on Selenium IDE?

I have an Image with image mapping as well as storing the mouse click position on click event. Following is sample mapping area to get the idea. <map id="ctl00_ContentPlaceHolder1_mapFront" ...

1 2 3 4 5 33