11,021 questions
0
votes
0
answers
14
views
Serenity BDD: Filtering tags by environment
I need to run different tests by environment. For example in develop I need to run tests with the tag @Something, in develop.another I need to run @Something or @Another.
So I'm trying to do it by ...
1
vote
0
answers
42
views
Writing PACT tests using cucumber framework in Java
So far I have seen that PACT (contract) tests can be written using JUnit in Java. Is there any way it can also be written using cucumber framework in Java?
Writing Java PACT tests using cucumber in ...
1
vote
1
answer
92
views
BehaveX parallel is running my after_all after every feature/scenario
Currently having an issue with my after_all - Whenever i run behavex in parallel through either my scenarios or features it will run the after_all after every feature/scenario is complete
This is my ...
0
votes
0
answers
107
views
Test for text content of generated PDF in new tab with cucumber feature
I have a web application in Ruby on Rails which uses the wicked_pdf gem to render a PDF. A week ago the PDF rendering failed and my test suite running didn't show because a test was missing. The ...
1
vote
2
answers
150
views
Is there a better way to replace placeholders in DataTable (Reqnroll) with [StepArgumentTransformation]?
I am using Reqnroll in an ASP.NET Core MVC app written in C#.
I have the following scenario:
Szenario: Passwort zurücksetzen und anmelden
Wenn ich auf Passwort vergessen klicke
Und meine Email eingebe
...
0
votes
0
answers
15
views
Immediately write single-line progress to Azure Devops log
In Azure Devops, the log seems to be buffered until a newline character is printed.
Some programs use single-line progress bars, like Cucumber's progress or cucumber-js's progress-bar outputs.
This is ...
1
vote
0
answers
55
views
Fill nested form field within table in cucumber feature
There is a cucumber feature in my Rails application. There is a step formulated to fill out a form field within a table which is within :accepts_nested_attributes scope of the model (The example here ...
0
votes
0
answers
36
views
Quantum + Cucumber + TestNG: “TestStep implementation not found” happens randomly on different suites
I'm working on a mobile automation framework based on Perfecto Quantum, which is built over QAF + Cucumber 1.2.5 + TestNG 6.10.
We're experiencing an intermittent issue during test execution where ...
1
vote
1
answer
94
views
Skip cucumber playwright test in the Hooks file using tag name
I have scenarios in my cucumber feature file with a tag labeled as @skipTest, and I want to skip all the tests in this file using the before hooks. The reason I want to do this is that in the local ...
9
votes
1
answer
2k
views
Unable to run tests with latest cucumber version 7.24.0
I have the below maven dependencies in my project using the latest cucumber version 7.24.0 and the tests are not getting executed.
All these tests run successfully if I switch to 7.23.0 . Any idea ...
0
votes
1
answer
74
views
Quarkus @QuarkusTest fails when running isolated JAR outside project directory
I have a Quarkus 3.16.3 + Gradle project that runs Cucumber tests using @QuarkusTest. I've created an isolated test runner JAR to run tests independently, but it only works from within the original ...
0
votes
0
answers
55
views
Database issue with Spring Boot microservice and its dedicated Cucumber integration test
We have a Java/SpringBoot RESTful microservice and an associated integration-test module that is running Cucumber steps. The problem is that when the test is run, although the Cucumber call to the API ...
0
votes
2
answers
120
views
Maven cucumber report is not generated
Everything in POM.XML and TestRunner.java is well configured, chcecked hunderd times, every time I run mvn clean verify - cucumber.json is generated, but cucucumbner-html never. Not even the folder. ...
1
vote
0
answers
50
views
Deactivate Google Password Manager in cucumber Tests
One of my rails cucumber features is failing. Showing the browser in parallel shows me the reason. The Google password manager is signaling a data breach while running this test. Other 30+ test suceed ...
0
votes
0
answers
28
views
how to re-try failed test case on test level not on the feature file level
I am using webDriverIo with Cucumber frame work. I have a feature files with 4 scenarios each , now with exiting re-try option , if one scenario is failed out of 4 scenarios then all 4 scenarios are ...
0
votes
0
answers
44
views
.feature is not under the 'features' directory. Requirements report will not be correctly generated
I am not able to run the test with Cucumber & JUnit5
Somehow tests are not running with the following error
".feature is not under the 'features' directory. Requirements report will not be ...
0
votes
1
answer
180
views
Cypress Badeball cucumber preprocessor installation issue
While I am running npx cypress run
I m getting the following error:
Your configFile threw an error from:
C:\CypressAutomation_\cypress.config.js
The error was thrown while executing your e2e....
0
votes
0
answers
134
views
Steps not binding in Test Explorer with Playwright BDD TypeScript Framework in VSCode
I'm currently working with the Playwright BDD framework using TypeScript in VSCode, utilizing Cucumber. My settings.json and cucumber.js files are correctly configured, and all paths are correctly set....
0
votes
1
answer
57
views
Not able to rerun the failed testcases in selenium cucumber with junit using mvn test command from cmd
FailedRun.java:
package myrunner;
import org.junit.runner.RunWith;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
@RunWith(Cucumber.class)
@CucumberOptions(features = {...
0
votes
0
answers
58
views
Cucumber Listener Invoked Before Spring Boot Context Initialization Causing NullPointerException
I'm integrating Cucumber with Spring Boot to manage an Appium server
for my tests. I a custom listener that implements
ConcurrentEventListener and is attached via @CucumberOptions in my
test runner. ...
0
votes
1
answer
97
views
Running Cucumber tests at runtime
Normally, Cucumber tests run at the maven "test" phase of the build process. And all the needed data is kept in src/test - step-efinitions and feature files, etc.
I need to be able to run ...
0
votes
0
answers
19
views
while running cucumber scripts using gitlab runner getting maven central repo error
[ERROR] Failed to execute goal on project Cash_Coin_Automation: Could not resolve dependencies for project com.rbs.CashAndCoin:Cash_Coin_Automation:jar:0.0.1-SNAPSHOT: The following artifacts could ...
1
vote
0
answers
88
views
java.lang.TypeNotPresentException: Type [unknown] not present . I get this error after adding cucumber report dependency in my pom.xml file?
I'm Having issue to run my test after adding cucumber report dependency in my pom.xml file. I use this resource in order to get dependencies
https://gitlab.com/jamietanna/cucumber-reporting-plugin
...
1
vote
0
answers
31
views
WebDriver not getting initialized with neodymium 5.2.0
I am working on upgrading my Test automation framework libraries, I have followed the guidelines and change logs while updating however I see issue with web driver initialization is not happening.
My ...
0
votes
0
answers
91
views
Selenium webdriver wont start on certain cucumber tag's
I'm working on a Selenium Java test automation project, and I encountered a strange problem that I can't seem to understand the cause of.
The project configuration is as follows:
Selenium 4.28.1
...