Questions tagged [functional-testing]

Quality assurance requires a strategic approach to testing, including functional testing as a critical step in the process. This type of black box testing focuses on aligning test cases with the software component's specifications to ensure its functionality is thoroughly evaluated.

What is the best way to verify that a page has successfully reloaded after clicking a link that navigates to the current page?

I have encountered a peculiar issue that I am attempting to replicate through testing. While I have identified the source of the problem and know how to resolve it, I am struggling to create an effective test case for it. Here is the scenario: I have my ...

Is there an issue with HTTP Basic Authentication through the URL in Firefox?

Typically, you can access sites requiring HTTP basic authentication using Selenium by including the username and password in the URL like this: selenium.open("http://myusername:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="20 ...

Execute Geb tests using Jenkins

I have created functional tests for my Grails application using Geb. I have set up my tests following the structure of this example project, where you can define a list of browsers to test against. While the tests are successful when run locally on Firefo ...

Trying out the Spyne software application

What is the recommended method for testing a Spyne application? Is there an equivalent to Django or Flask's test client available for Spyne? I am not fond of the idea of having to start a WSGI server every time I want to test my application. Take a look a ...