Acceptance testing is a test conducted to determine if the requirements of a specification or contract are met

learn more… | top users | synonyms

0
votes
1answer
19 views

Updated to Capybara 2.1.0.rc, now having trouble with current_path in my feature specs

So it seems like I've used current_path many times in request specs. However, Capybara now requires specs to be in the features directory in order to use the Capybara DSL (page & visit) # ...
1
vote
1answer
27 views

How to serve static files with capybara and cucumber

I want to run acceptance tests for an rss feed reader and I need an URL to an atom or rss feed. Ive got a small file which contains my sample atom/rss and i want to access it from a locally running ...
0
votes
1answer
21 views

How to describe default state in features and GUI details

I have a button that changes its caption on hover. Im kinda at a loss how to phrase the features to test for that default state. At the moment Im using Scenario: show caption on hover Given ...
-6
votes
0answers
22 views

Need a feature test tool soon [closed]

I have a site that I need to start writing feature tests for. The rest of my team is using cuke4duke (a Java version of Cucumber) for their testing, but I don't know Java, so I can't really use that. ...
1
vote
2answers
34 views

Force compile error when obsolete method is used in another obsolete method

I am writing some fixture code for fitnesse in DotNet 4.0 and wanted to protect my api methods from being used within the codebase. I thought this could accomplished using the [Obsolete] attribute, ...
0
votes
0answers
26 views

Framework for readable and maintainable acceptance tests

Im looking for an acceptance testing framework with readable syntax (like Cucumber's plain text specs) but as an internal domain specific language (DSL). First I was thinking about ScalaTest but non ...
0
votes
1answer
67 views

Can you get Mink to follow redirect from https to http and keep the Session?

I am trying to test my ajax scripts using codeception & PhpBrowser(which uses Mink with Goutte driver). My ajax scripts require an authenticated session in order to execute, and the session is ...
0
votes
0answers
12 views

Should I test real request in mobile integration tests?

I'm a mobile developer (Android and iOS) and I'm trying to write automated integration/acceptance tests to simulate user behavior. Should I mock the requests to the web server or not? I'm asking this ...
0
votes
1answer
101 views

I can't import fixture into my fitnesse page

I wanted to begin test my Java Apps with Fitnesse, but I have a big problems right at beginning. My fitnesse page to test my very simple class is: !contents -R2 -g -p -f -h !define TEST_SYSTEM ...
0
votes
3answers
107 views

System testing vs Acceptance testing - Difference in test cases [closed]

I'm a bit confused about the real difference between system testing and acceptance testing. When I search this topic the answers differ and I fail to see how the testcases can be vastly different. ...
2
votes
2answers
72 views

Acceptance Testing with Requests Library (python)

I'm having issues writing an acceptance test for login functionality using the requests library. The login was implemented using post method and I have no way to directly alter a query string and ...
0
votes
2answers
67 views

Acceptance Test Driven development of a service with several clients

I have a question related to acceptance test driven development (ATDD). My application is developed as a REST Service which might have several clients - web site, mobile, desktop. The ATDD concept ...
1
vote
1answer
140 views

Codecepetion Acceptance Test with self signed SSL

I am trying to login to my app using WebGuy. I created a Cept file MergeCompaniesCept.php with contents: $I = new WebGuy($scenario); $I->wantTo('login into admin, merge companies, & verify ...
3
votes
1answer
134 views

Continuous Integration and Acceptance Test Driven Development

I have a question related to Acceptance Test Driven Development (ATDD). According to the process, I start every feature with an acceptance test (end-to-end test). I commit these tests and they are ...
0
votes
1answer
74 views

How to detect dom change in acceptance testing with selenium and codeception

I am writing an acceptance test for application written in angular. I use Codeception testing framework with selenium. The test writes some text into input field and submits form. It should add new ...
0
votes
1answer
155 views

Geb how to auto populate username/password prompts

I'm using geb with spock as my acceptance test framework. Everything is going great except that there is an issue with a couple of tests where when it redirects to another website we are prompted to ...
1
vote
1answer
328 views

Using specflow to write acceptance tests for an Mvc4/WebApi website

I've been reading a bit about acceptance testing and I'd like to add some to our web application. We been experiencing a number of regressions recently and I think that this would help us. We're ...
1
vote
3answers
111 views

How to do a smoke Test and Acceptance test in a Javascript Aplication?

I want to do a smoke test in order to test the connection between my web app and the server itself. Does Someone know how to do it? In addition I want to do an acceptance tests to test my whole ...
1
vote
1answer
68 views

How to write out acceptance based tests (from a code point of view)

I have been studying acceptance based tests and they look quite nice as they fit more naturally with feature based development. The problem is that I do not know how to lay them out in code. I would ...
1
vote
3answers
58 views

What's the advantage of using Fitness versus automated Integration Tests?

What's the advantage of using Fitness versus automated Integration Tests? I'm struggling to see exactly where Fitness fits in when aiming to deliver a fully tested solution. Surely, if a developer ...
0
votes
1answer
92 views

Using TeamCity how can I deploy to an environment then run tests against that environment?

I am struggling to get my head around this! I wish to have TeamCity deploy our windows service to a particular environment, then a separate project run acceptance tests against that environment. ...
0
votes
2answers
113 views

What to use today about Behaviour-Driven Development and Acceptance Tests?

Some years ago I´ve tried to work with BDD and some tools of Acceptance tests, like Selenium/Web-driver, Fitnesse and JBehave. I´d like to back to work with that in my current project, so I would ...
1
vote
1answer
96 views

Acceptance tests dealing with GUI?

Any good software architects would be agree that when someone builds a new project from scratch, he mustn't carry about boundaries at the beginning (database, GUI, external services etc...) Indeed, he ...
0
votes
1answer
70 views

Fitnesse automatic generate fixture class

I'm evaluating the Fitnesse as an acceptance test tool. Is there any way to automatically generate fixture class from fitness test pages?
0
votes
1answer
55 views

Should I practice acceptance testing for my SOA part?

Suppose an SOA layer with a web app at a boundary. If I want to create some acceptance tests in order to practice Behaviour-Driven Development, does it make sense to have distinct ones at both parts: ...
0
votes
1answer
78 views

rspec2 acceptance testing with capybara

I'm trying to implement a feature with rspec2 and rails3 , basically I have a Post model which I'm trying to test by creating a Post (I'm using device for authentication) this is my feature ...
1
vote
2answers
282 views

Maven - Post-deployment testing

I'm trying to decide how to create a set of Acceptance Tests for a Java EE web application. Here's the setup: Maven is used to generate a WAR file and deploy it into Glassfish. On deployment, the ...
0
votes
0answers
581 views

Capybara Acceptance Tests: undefined method `visit' for #<RSpec::Core::ExampleGroup

I'm in the process of upgrading an old krufty application to Rails 3.1. The company has been using RSpec and Capybara for acceptance tests. We've got some acceptance tests under spec/acceptance that ...
0
votes
0answers
22 views

Xstudio integration with jbehave

We are working with jbehave as a java bdd tool. I want to integrate it with the xstudio. have someone already tried it? Is there any other test management tool recommended (except QC)
2
votes
1answer
188 views

Fitnesse plugin for eclipse

I'm working with Fitnesse as an acceptance test tool. I'm right the fixture in java. And i'm looking for a good plugin for the eclipse.
0
votes
0answers
55 views

can't find element in other element by using Capybara

I have tables within several nested div's and i try to find cell in some column. But in 2 different tables columns have equal titles <div id="first_id"> <p> Title 1 </p> ...
3
votes
1answer
134 views

Framework for running automated acceptance tests after build?

In my current project we are using a TFS Build server for continuous integration (build + run unit tests). We also have a set of automated acceptance tests written as SpecFlow features. However, ...
0
votes
1answer
13 views

How to access class variables in cabybara tests?

In my capybara tests I want to check if certain links are visible or not. Before each test, I login as a foo. Is it possible to access that @foo variable out of the contexts? Would be very handy for ...
1
vote
2answers
73 views

jemmy3 status of development

While I was searching for Swing UI-testing tools I came across Jemmy. The new version, Jemmy 3 has very promising lookup methods, according to this tutorial . On the other hand, I found no ...
0
votes
0answers
28 views

.Net tools for making assertions on database state

I'm writing acceptance tests for by web application and need to assert on some state in the database after user performs an operation in the system. I'm using .Net. Do you know any tools that might ...
1
vote
2answers
70 views

Writing tests for code that takes files as input

I'm writing a program right now that parses epub files (which is basically a zip with some xml metadata files). The program works great for all input files I tested it with. Nontheless I'd like to ...
4
votes
1answer
339 views

How does the “element(selector, label).query(fn)” method work in Angular E2E tests?

When writing E2E tests for Angular Scenario Runner I came across a query() method: element(selector, label).query(fn) The documentation says: Executes the function fn(selectedElements, done), ...
5
votes
2answers
413 views

Configure RSpec to use the Capybara.javascript_driver for all request specs

Is it possible globally configure RSpec to use Capybara's (default or custom) JavaScript driver for all request specs? We sometimes forget to manually add js: true to every request spec and it's kind ...
2
votes
1answer
97 views

Frank Accessibility Enabled But Still Getting an Error

Frank was working until yesterday. I'm not sure what I did that screwed it up. In a project that I had Frank installed in and worked up until yesterday, I get a: PING FAILED!!!!!... Message now. So ...
1
vote
1answer
180 views

Should testers use the same tool as developers for BDD-style tests?

I don’t have experience with BDD but after some research I see that it can be very useful in our project. The idea is that developers want to create BDD-style tests (using SpecFlow) for their unit ...
1
vote
1answer
258 views

Is it possible to test css property of some element, defined in external css file, using Selenium Webdriver and C#?

How can I test css properties of any web-page element, which is defined in external css file. If I had, for example: <div id="some-div" style="opasity: 10;"></div> I could just take the ...
0
votes
0answers
50 views

Can I test windows workflow using Specflow?

I have a windows workflow that I want to test against some acceptance test. I was wondering if there are any automation tools that I can use to test the behavior of my workflows. Can Specflow be used ...
1
vote
1answer
120 views

Specification By Example: how to manage low level details [closed]

I need advice of an expert in BDD/ATTD/Specification by example. (Sorry for a long essay, I didn't know how to express the problem in a fewer words) Problem description We've been working on a ...
2
votes
1answer
348 views

How to organize the specs definition in Cucumber?

We are considering to use Cucumber on our project for acceptance testing. When we write a scenario in a Cucumber feature, we write a list of Given, When and Then statements. As we use cucumber-jvm ...
3
votes
3answers
162 views

ATDD - Where do acceptance tests start?

I am trying to understand acceptance tests, but I am confused where it starts or what kind of test/s is/are involved. Do I have to use automating GUI test frameworks or do I have to use unit tests? ...
0
votes
1answer
80 views

Start and set up web service before running Android acceptance tests that use it

I have an Android app that depends on a web service for data. I'd like to set up automated end-to-end acceptance tests that run against the app, with the web service being part of the 'black box'. ...
0
votes
1answer
117 views

How specific do I get in BDD scenarios?

Take two different ways of stating the same behavior. Option A: Given a customer has 50 items in their shopping cart When they check out Then they will receive a 10% discount on their order Option ...
0
votes
1answer
114 views

Acceptance testing of Spring MVC app

Can you recommend some frameworks for acceptance testing of Spring MVC application? Something like Rails "Capybara+Cucumber" would be ideal. I have found only Selenium so far.
1
vote
1answer
116 views

Functional tests and legacy code in database

The context is the following we have an MVC web application with a lot of legacy code in the database. (We are not allowed to migrate this code to the server side) For our persistance store we use the ...
1
vote
1answer
438 views

How to programmatically ignore some acceptance tests using TechTalk.SpecFlow and C#?

I have several feature files with some scenarios. I need to ignore several scenarios, or features, marked with some @tag depending on some condition. I have read specflow documentation but didn't find ...

1 2 3 4