Questions tagged [functional-testing]

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.

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.
Functions are tested by feeding them input and examining the output, and internal program structure is rarely considered (not like in white-box testing).
Functional Testing usually describes what the system does.

Functional testing typically involves five steps:

  1. The identification of functions that the software is expected to perform
  2. The creation of input data based on the function's specifications
  3. The determination of output based on the function's
  4. The execution of the test case
  5. The comparison of actual and expected outputs
1493 questions
-1
votes
1 answer

Can Laravel page content tests be constrained by a CSS or XPath expression?

I'm learning Laravel and am currently looking at how automated functional tests should be written. I'm used to tools like Selenium and Spiderling, where I can specify where on a page a text fragment should be found. For example, in Spiderling, I can…
halfer
  • 19,824
  • 17
  • 99
  • 186
-1
votes
1 answer

Online automated regression or functionality testing options

I am searching for an online service that allows me to automate certain regression or functionality tests. I would like the ability to use a browser based screen recording plugin like e52.com and ghostinspector.com have. I like ghostinspector.com…
-1
votes
1 answer

file mode in .cs file in ranorex

I am new to automation testing tool Ranorex. Evaluating ranorex for the upcoming projects in our organization. Once We are done with the recording sessions in ranorex two files are generated, one is for user to change code file and one is auto…
Ankit
  • 43
  • 3
-1
votes
1 answer

DJANGO can't delete a user from django.contrib.auth.models when running functional test

I have not been able to execute the deletion of any User that is created during test while tearDown() methods are run. Error is puzzling, as it suggest no models are loaded. have tried the…
leoreq
  • 3
  • 1
-1
votes
2 answers

how to pass additional data to the test?

please help solve the problem. controller tags: class TagsController < ApplicationController def show @tag = Tag.find(params[:id]) @posts = @tag.posts end end test tags: class TagsControllerTest < ActionController::TestCase fixtures…
-1
votes
1 answer

Functional tests for common PHP5 extensions

I'm a python programmer, but I need to test if everything works fine on a webserver after PHP upgrade. I'm not very familiar with PHP, and I'm looking for some functional tests (common operations which make use of the PHP extensions). I've done…
Taku
  • 562
  • 1
  • 6
  • 15
-1
votes
1 answer

Which tests should get written first when following TDD for building a web app from the ground up?

My basic question boils down to: when starting a fresh project, should I start by writing a functional test for a feature and then writing unit tests as I try to get the functional test to pass? Or should I start by thinking about a smaller…
-1
votes
1 answer

How to test multiplication of two big numbers

I have a function which gives the result of the multiplication of two big integers ( around 100 digits). How do I test to verify that the function is working correctly? Thank you. Each big integer is represented by an array. Therefore, the…
pritorius
  • 39
  • 6
-1
votes
1 answer

Code coverage for GUI based functional tests

I am trying to get bytecode coverage analysis using a code coverage tool (like Emma or Jacoco) after testing with a GUI based functional testing tool (like HP QuickTest Pro or Selenium). Anyone who has done this could please give me an idea to start…
-1
votes
1 answer

Which is best for android automation calabash or UIAutomator api

Friends please suggest me which is best for android automation - calabash or UIAutomatorViewer. I dont have any idea about calabash, but few of my friends started working on it.
andinrajesh
  • 575
  • 2
  • 9
  • 24
-2
votes
1 answer

Is there an in memory messaging broker for functional testing of RabbitMq?

I need to write functional tests flows that involve interaction with RabbitMq. But once the tests are run I will have to clear any existing message in the queue. Since RabbitMq is persistent I need some in memory substitute for RabbitMq. Just like…
Rajat Mishra
  • 364
  • 1
  • 5
  • 19
-2
votes
1 answer

Symfony 4.2 unit testing wont works

I am doing unit testing / functional testing, but my code gives me an error. Kindly have a look on my code and suggest a solution. Codes On Controller
user10953623
-2
votes
1 answer

How to mock a setter method using Mockito that has multiple parameters

My Question is how to use Mockito's doAnswer to call the original method and with my own test parameters. To complicate matters, one of the parameters is not a primitive. It's a custom class. Given the following: public class…
Michael Lupo
  • 326
  • 3
  • 17
-2
votes
1 answer

Python functional test for linux command

I want to write functional tests for linux sort command in python. I am new with writing test cases. While researching i found Cram and pytest that can be used, but not sure. So any leads or links on how to proceed for writing functional test…
Tinku
  • 51
  • 1
  • 10
-2
votes
1 answer

selenium: using switchTo().window("WEBVIEW") doesn't work on emulators

When I am executing hybrid testing on real device, switchTo().window("WEBVIEW") works perfectly, but when I am using emulator, it doesn't do anything.
1 2 3
99
100