Questions tagged [testcase]

In the realm of software engineering, a test scenario encompasses a series of circumstances or elements that allow a tester to evaluate the functionality and accuracy of an application or software system.

Can you explain the BDD feature file structure for transferring to TestRail?

Having trouble importing BDD feature files from my Automation Framework into TestRail. Even after using the 'Import .feature files into TestRail' feature, the file imports without any testcases and I'm unable to manually add them. Trying to import .featur ...

Trying to execute Python scripts in Selenium IDE as a test suite

I'm facing a couple of issues when trying to run multiple Python test scripts exported by the Selenium IDE Python Remote Control plugin formatter. 1) The browser window automatically closes after a python script is completed. I am using Firefox for my tes ...

Clearing/resetting the mock implementation for a method in Jest: step-by-step guide

With Jest, I successfully mocked and implemented a method for the first test case. However, for the second test case (testcase2), I am struggling to implement the same mock method with different input. jest.mock('../../lib/testService', () => ({ TestS ...

execute all tests in specified directory

Within a specific directory, I have a collection of testcase files that are in yaml format. To test my application, I am utilizing pyresttest. Is there a way to efficiently run all the tests located in this directory without having to write a script manu ...

Encountering an issue where the `tagName` property of null is unreadable during testing in React using Jest and the testing library

Currently, I am in the process of creating test cases using React Testing Library along with Jest. My main objective is to verify that a dropdown list from another Multiselect component appears when I make a selection from the first dropdown menu. Here's ...