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
-2
votes
1 answer

Is there an API to write functional tests for smart card access?

Is there a Java based API to simulate smart card access and thereby write functional tests for a functionality that depends on data read from smart card? We use contact based readers in this case so simulation is needed if we want to write…
Paddy
  • 3,472
  • 5
  • 29
  • 48
-2
votes
1 answer

What should I do after I write webdriver tests? how do I run them automatically?

I'm testing this website: public static void main(String[] args) { WebDriver firefox = new FirefoxDriver(); firefox.get("http://test.naimi.me"); WebElement row = firefox.findElement(By.className("row")); …
ERJAN
  • 23,696
  • 23
  • 72
  • 146
-2
votes
1 answer

Performing boundary value testing on float range

I want to perform boundary value analysis on a program which takes 3 float variables as input and returns the largest out of them. There's no range specified hence I impose the range to be the one implied by the no. of bytes used to store float…
kasif
  • 57
  • 1
  • 8
-3
votes
1 answer

Node-FTP duplicating operations upon uploading a file

As there are things called 'callback hell'. It was the only way I can get a file from a server to my vps pc, and upload it. The process was simple: Download a .json file from the ftp server Edit the .json file on the pc Upload the .json file and…
-3
votes
2 answers

How to define an selector if the elements are dynamic element

snippet code on img below I want to assert text on p clas = jss94 jss102 jss127 jss264 jss265 This class is dynamic, and all the class before it also dynamic. So how to get the text or how to select the element if there's no static id/class/text on…
-3
votes
1 answer

How to copy prod database to test environment?

How to copy production database to test environment? I would like to test my website functionally, but for that I need the current database. I do not want to flip the database through phpmyadmin or temporarily change parameters, just after running…
soweno
  • 1
  • 1
-3
votes
1 answer

How to click on the first record if the search records are more than one?

How can i check using selenium web driver either any search result exists or not. e.g while searching any record in the amzon.de
-3
votes
1 answer

How to apply assertion in REST API testing through soap UI

I am namrata ... I have been doing REST API testing in my company. I a new for API testing. I have done simple REST API testing using SoupUI. My Question: I would like to know, how can I go for assertions in REST API using SoupUI testing tool.…
1 2 3
99
100