Top "Functional-testing" questions

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.

Using Moq to Mock a Func<> constructor parameter and Verify it was called twice

Taken the question from this article (How to moq a Func) and adapted it as the answer is not correct. …

c# unit-testing moq functional-testing
How to check if an element is not clickable with Protractor?

It's trivial to test if an element is clickable with Protractor, but I'm stuck scratching my head trying to figure …

javascript node.js protractor functional-testing
How to test for the appearance of a Toast message

Would anyone know how to test for the appearance of a Toast message on an Activity? I'm using code similar …

android functional-testing
Testing File uploads in Symfony2

In the Symfony2 documentation it gives the simple example of: $client->request('POST', '/submit', array('name' => 'Fabien'), …

symfony file-upload phpunit integration-testing functional-testing
What testing does Selenium cover over and above Karma?

I understand that Karma is a JavaScript test runner, which can run tests in real browsers. If that is the …

javascript selenium functional-testing karma-runner browser-automation
How to stop all tests from inside a test or setUp using unittest?

I'm extending the python 2.7 unittest framework to do some function testing. One of the things I would like to do …

python testing automated-tests functional-testing python-unittest
How to test a GraphQl API?

I need to write a functional test suite (that will test a GraphQl API). The test suite will be in …

testing functional-testing graphql
In Rails, how do you functional test a Javascript response format?

If your controller action looks like this: respond_to do |format| format.html { raise 'Unsupported' } format.js # index.js.erb …

javascript ruby-on-rails response functional-testing
Rails functional test: sending URL query parameters in POST request

I'm sending a POST request in a Rails functional test like this: post :create, collection: { name: 'New Collection' } collection gets …

ruby-on-rails functional-testing
How to post JSON data in rails 3 functional test

I plan to use JSON data in both request and response in my project and having some problems in testing. …

ruby-on-rails json functional-testing