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.

Unit tests vs Functional tests

What is the difference between unit tests and functional tests? Can a unit test also test a function?

unit-testing testing functional-testing
Catching exceptions from Guzzle

I'm trying to catch exceptions from a set of tests I'm running on an API I'm developing and I'm using …

php api functional-testing guzzle
What tools do you use to test your public REST API?

Looking for tools use to test REST API. So far I'm only aware of SoapUI. I've tried SOAPUI but - …

api rest qa functional-testing soapui
Difference between acceptance test and functional test?

What is the real difference between acceptance tests and functional tests? What are the highlights or aims of each? Everywhere …

testing functional-testing acceptance-testing
Using Mockito to mock a local variable of a method

I have a class A that needs to the tested. The following is the definition of A: public class A { …

java mocking mockito functional-testing
Send keys control + click in Selenium with Python bindings

I need to open link in new tab using Selenium. So is it possible to perform ctrl+click on element …

python selenium selenium-webdriver functional-testing
Best way to take screenshots of tests in Selenium 2?

I need a way to take screenshots of my functional tests. Right now I'm using Selenium 2 with C# bindings. I …

c# selenium screenshot functional-testing webdriver
difference between functional testing and system testing?

I heard that system testing has two types 1)functional Testing 2)Non functional testing But later in another website i have …

testing functional-testing system-testing
HTTP Basic Auth via URL in Firefox does not work?

I know that normally you can login to sites that require HTTP basic authentication with Selenium by passing the username …

testing selenium basic-authentication functional-testing
Does Python have anything Like Capybara/Cucumber?

Ruby has this great abstraction layer on top of Selenium called Capybara, which you can use do functional/acceptance/integration …

python functional-testing acceptance-testing