I'm new to Cucumber, and I'm trying to understand the tool. While reading the documentation, I found that it is defined shortly as "a tool tha
I am trying to run my project tests in a docker container. All of the tests work just fine when running locally. Errors started occurring when I tried to move m
So I'm trying to figure out a Software Testing technique that would decrease the amount of test combinations inputs of a Radio Button dialog. The dialog has thr
A project I'm involved in uses testbook to test code cells of Jupyter notebooks. Patching works fine — unless the code to be tested asks for
I'm building a single page web application (SPA) with server side rendering (SSR). We have a node backend API which is called both from the node server during
Is there a difference between expect(screen.queryByText('<something>')).toBeInTheDocument(); And screen.getByText('<something>'); (The specific ge
I have written a gnuradio block with 1 input and 2 outputs. Now I'm writing the qa_test in python. the code below is to test a block with 1 input and 1 output.
I have a Haskell package I've installed from Hackage, using cabal and would like to run the tests suites that are part of the package, but it isn't clear to me
I would like to try out test-driven development, but the project I am working on involves a lot of randomness and I am very unsure about how I can test it. Here
How can I check if an element contains multiple items in Cypress.io without replicating my code so much? Current Example: cy.get(".column") .children() .con
In Cypress.io is there a way that I can force a test to fail if a certain condition is met? For example, on my webpage, if the string "Sorry, something went wro
In cypress I'm trying to drag one element towards another element? How can I do that? It should look something like this cy.('@firstElememt').trigger('drag').to
Is there an open source tool available to control the running of BDD cucumber tests? We are developing BDD cucumber tests and would like the option to control
I am requireing chai like this const BigNumber = web3.BigNumber; require('chai').use(require('chai-bignumber')(BigNumber)).should(); and during test let balanc
Current behavior I'm currently working on a project where I set up a command in my package.json. As soon as I run that command through a cypress file, it seems
Current behavior I'm currently working on a project where I set up a command in my package.json. As soon as I run that command through a cypress file, it seems
I wonder if there is a way to send GraphQL mutations using Cypress? There is cy.intercept() but this is more for waiting for responses.
I am in my starting programming phase and I wanted to ask about mocking Objects with Mockito, more specifically is the Unirest response. Let's say I have a data
I'm trying to achieve 100% coverage in a project and this is the only file I can't test because I haven't got any idea of how to do it. I don't even know where
I have the following method to test, which uses a function imported from a package. import x.y.z func abc() { ... v := z.SomeFunc() ... } Is it