Functional testing is a quality assurance (QA) process and a type of black box testing that bases its test cases on the specifications of the software component under test.

learn more… | top users | synonyms (1)

0
votes
1answer
15 views

Testing if a file uploads sucessfully in Rails

I'm running Rails 3.2.13. In one of my controllers, the application processes a form by which the users sends a file. The application analyses the file and saves it OR NOT, depending on the analysis. ...
0
votes
0answers
23 views

CasperJS `assertField` fails with undefined value after `fill`

I can't seem to get this assertion to pass. I've added other asserts for verifying the existence of the fields and some other things to try to get this to work, but no luck. I feel like I might be ...
0
votes
2answers
141 views

Designing Testable Functional Code

I like the idea of writing pure functions, but I'm having trouble understand ways to combine them that lead to testable code. I'm used to extracting classes and then stubbing appropriately, and feel ...
1
vote
4answers
31 views

What value would I get from integration tests when I already write unit tests and functional tests

We have a web application (using Grails/Groovy) and we write unit tests and functional tests. However, we are not writing integration tests. With unit tests, we can catch some small issues and also, ...
0
votes
0answers
19 views

php kohana functional testing database environment

I've got an application developed in kohana 3.2. I want to write some functional tests that will affect database content. I would like to load the database from a dump file each time I run all ...
1
vote
1answer
29 views

Codeception - Acceptance tests work but Functional test don't

I am running the latest version of Codeception on a WAMP platform - My acceptance is very basic however works fine (see below): $I = new WebGuy($scenario); $I->wantTo('Log in to the website'); ...
0
votes
0answers
8 views

Test Approach/strategy for testing Complete Web Analytics solution for eComm site

Can you share your experiences on testing enterprise Web Analytics solution (viz- SiteCatalyst, WebTrends ..) for large retail websites. I am looking for a overall test strategy from testing side. ...
2
votes
1answer
32 views

How can I load fixtures from functional test in Symfony 2

My DoctrineFixturesBundle is installed and I can load fixture trough the command-line but , how can I load fixtures from my functional test ?
1
vote
1answer
22 views

How to test nested routes in rails

I have route: resources :users do resources :records do resources :grades end end How do I functional test them? I can make get test for record right: test "should get index" ...
0
votes
1answer
15 views

Does unit testing prove functionality?

I have a silo type subsystem that takes in message inputs, completes its function, and then gives message outputs. Each individual functions are simple and seems pointless to unit test them (Passing ...
-1
votes
1answer
47 views

Robot Framework - Case sensitive

I need to know if there is a workaround on this error: When I use Keywords like: Location Should Be Location Should Contain (Which are both part of the Selenium2Library.) I get this error: ...
0
votes
1answer
10 views

Setting HTTPS in functional tests for Symfony 1.4

I'm forcing users into SSL using a filter. However, I'm running into issues with the functional tests and particularly redirects not being HTTPS but HTTP which adds in an extra redirect that isn't ...
0
votes
1answer
24 views

How to add XML Content to form in Symfony

I don't find a way to add "button" or "input" fields to a form to the crawler in Symfony for testing. I'm doing this : $crawler = $this->client->request('GET', ''); $document = new ...
0
votes
1answer
38 views

Running Intern functional tests using AndroidDriver

I've tried to run some Intern functional tests on Android using AndroidDriver (https://code.google.com/p/selenium/wiki/AndroidDriver), but I was unable to (the test runner hang and never returns, ...
0
votes
0answers
16 views

Functional testing a daemon in Python

First, when I say daemon, I don't necessarily mean an application that's been spawned as such, but merely one that is intended to be run that way; in this case, an HTTP load balancing component. The ...
0
votes
1answer
18 views

Ruby on Rails - Testing the contents of a CSV file

So I have a link on my rails web page that generates a CSV file. How would I go about writing a functional test to test that the CSV file is created properly and check the contents of it?
-5
votes
0answers
18 views

Check my site working [closed]

I have add some plugins (wp super cache, minify) and cloudflare cdn. I have a lowering of visits, and i don't know if on some countries website don't works. Can you check it and say me if works, and ...
-4
votes
0answers
48 views

Check List for Testing web application in asp .net [closed]

I have been given to collect all check lists needed to check for testing a web application built on ASP .NET C#. I have surfed but didn't find a suitable one. Checklists are some important aspects ...
0
votes
0answers
33 views

Test Automation for a JavaScript built front end

At my organization we currently have a Windows-based application which will be phased out in a couple of years. We are building a web based version of this application to replace the legacy system. ...
0
votes
1answer
34 views

Selenium Caution: '/usr/bin/google-chrome': file is a script file, not a real executable. The browser environment is no longer fully under RC control

I am getting the above error when I run a functional test-case in a Grails project using Selenium 2.0.RC1 plugin on Ubuntu 12.0.4.
1
vote
1answer
36 views

How to functional test secured pages in Symfony2?

Setup and information to reproduce the problem Symfony2.2 application LiipFunctionalTestBundle DoctrineFixturesBundle FOSUserBundle For testing enviroment I use LiipFunctionalTestBundle and ...
0
votes
3answers
46 views

how to perform a functional test on a triangle

I am trying to do functional testing to check a triangle. i have three int input. The three input variables each describe the lengths of each side of a triangle. The lengths of the sides of the ...
0
votes
2answers
43 views

Java: Compare XPath structure

I am writing some functional tests that should compare the XML structure of two XML documents. This means that the tag order and naming is improtant, while the tag content is irrelevant. For example, ...
0
votes
0answers
13 views

Rails Funcitonal test - before_filter not executed

My rails controller has a before filter so that action 1 takes place before action 2. Action 1 and 2 are controller methods. Action 1 decides the user using the site and action 2 checks if the user is ...
-2
votes
1answer
172 views

Best open source software for Mobile Application Testing Tool [closed]

I am new to Mobile Application Testing. Can anyone suggest me the best open source Mobile Application Testing Tool for Android and iPhone ?
0
votes
0answers
100 views

List of Best testing tools for testing oracle forms except selenium and open script [closed]

I want to test oracle application how should I test the oracle forms or application. If any tools available please give brief introduction.
1
vote
1answer
40 views

phpunit assert that the element has a value

I'm using phpunit for the Yii framework. Tried creating a functional test. How to test that the existing element or label has a value. I have read that ...
1
vote
1answer
140 views

Send command-line arguments to MonkeyRunner script

I am starting to explore writing MonkeyRunner scripts as part of my test suite. I am testing two apps: a free version and a paid version. I would like to write a single test script which I can run ...
0
votes
0answers
16 views

In symfony 1.x functional testing, how can I set a value in a 'select' element?

sfBrowser has the method setField, which lets you set the value of an input tag. But I haven't been able to use it to set a value of a select tag. ...
1
vote
0answers
17 views

functional testing writing equivalence classes

Hey guy's i'm taking a software testing module and trying to study for the final coming up soon but having a little problem getting my head around some of it the question that was asked last year is ...
0
votes
0answers
43 views

FlexMonkey with Flex 4.6

I am attempting to use FlexMonkey with my Flex 4.6 Web application. When I add the compiler arguments to link the automation_monkey4.x.swc file, I get a compiler error saying Declaration of ...
0
votes
0answers
18 views

Add pcap play support to tcl?

I am new to Tcl scripting but I wish to integrate SIPP's pcapplay support to Tcl based testing. I am in search of pointers on how to integrate it with my testing framework? I did do a lot of googling ...
0
votes
0answers
147 views

Silex WebTestCase: Cannot send session cookie headers already sent by PHPUnit/Util/Printer

Not entirely sure what's causing the issue, especially since I've followed the official documentation. I've also read countless Google Group discussions and questions here but to no avail. So I've ...
0
votes
1answer
235 views

AngularJs E2E how to test if an element exists in DOM

In my angular e2e test I would like to be able to tell if an element exists on the DOM, it's not an test expectation, just a condition I need. I tried to do ...
1
vote
2answers
109 views

Compare structure of two XML files

How can I compare to XML structures, ignoring the tag content? For example, the following responses: <note> <to>Adam</to> <from>Eve</from> </note> And: ...
1
vote
0answers
21 views

How to send object by post in FunctionalTest with Play 1?

I want to know if there is some way to send by POST a complete object without having to send it attribute by attribute. Actually I am doing something like this but I think there might be an easier ...
1
vote
3answers
62 views

Symfony2 Functional Testing - Click on elements with jQuery interaction

I'm doing some functional tests for an application done with Symfony2 (2.1) and I'm stuck with a problem. I have some parts of the website that load when the user clicks a link or other element, but ...
0
votes
0answers
91 views

Karma Nodejs Angular Interacting with DB

I have an application that very data intensive and it displays different very different output dependent on data in the backend mongodb database. Is there a way I can write e2e tests with karma and ...
0
votes
1answer
47 views

Functional Automation solutions for sql database testing [closed]

I am looking for some suggestions on how to automate testing of business functions when it comes database testing. That is, how do we automate functional testing of an application a) when the ...
0
votes
0answers
47 views

nodejs starting and stopping server for full stack tests

Hey I'm trying to write some full stack karma tests. Ideally for our test system, I would like our nodejs application to be started, then our tests to run then the application to be stopped. Is ...
1
vote
2answers
88 views

Unable to find an existing element using casperjs

I am using casperjs as a testing tool for my application. I am facing a weird issue here. casper.then(function () { this.click('a[href="/ui/thunder/"]') }) casper.then(function () { ...
1
vote
0answers
153 views

Ruby on Rails 4 deprecation warning in functional test on patch method

I've started new rails 4 project, and generated scaffolding for my resource: Article. Rails has generated functional tests for my controller like this: test "should update article" do patch ...
0
votes
1answer
131 views

(quick)Haskell - How to filter Results to display correctly [closed]

I have a list of movies in a Database. type Database = [Film] type Title = String type Actor = String type Cast = [Actor] type Fan = String type Fans = [Fan] type Year = Int type Period = (Year, ...
0
votes
2answers
70 views

Software Testing Tools for PHP

I'm new in the Software Tester field. I just want to know which Software Testing Tools that suitable for : Check bug in the source code Functional testing Performance testing Language : PHP, ...
0
votes
2answers
56 views

JavaScript In-Browser Functional Testing

I've been using Jasmine for unit testing but have lately been looking for a tool to perform functional testing. Names I'm seeing mentioned a lot include PhantomJS / CasperJS, Selenium / WebDriver, ...
1
vote
2answers
51 views

Multiline Documentation in robot framework

I want to document test scenarios, the principle behind the scenarios etc. in robot test case itself. For that the documentation need to support multiline features and formatting. Is there anyway to ...
1
vote
1answer
58 views

WebDriver capabilities?

I'm exploring possibilities for automating browser content tests. WebDriver is something I'm looking at; also, PhantomJS / CasperJS. It appears easy enough to test for the presence of text content, ...
0
votes
2answers
98 views

how can i set timeout for page loading in Mink with Selenium 2 driver?

My application uses Mink with Selenium 2 driver. when i try to load the page with some resources that are loading slow (or not loading at all) the application waits infinitely until everything is ...
1
vote
1answer
47 views

“Click” node other than anchor in Symfony2 functional test

I have a <li> element, which has a click listener bound to it with jQuery. Is it possible to "click" this element with the client/crawler, to test the result. So far I have only found ways to ...
1
vote
1answer
25 views

Testing similar logic

I am really curious as to how to best test a small project that may be developed. Consider the above design pattern. Is there a good way to test a software that follows the above design. I have ...

1 2 3 4 5 12