Skip to main content
Filter by
Sorted by
Tagged with
3 votes
2 answers
375 views

After the upgrade to version 7.23 of io.cucumber:cucumber-bom I'm getting Unable to load class 'org.junit.platform.engine.support.discovery.DiscoveryIssueReporter'. when trying to run my tests. I ...
Dennis's user avatar
  • 33
0 votes
0 answers
76 views

I have AWS lambda with Java 21 and integration tests with cucumber using test containers and cucumber junit platform (including @Suite). When I am running tests from it/java package, Cucumber tests ...
Edgar Yeghiazaryan's user avatar
1 vote
0 answers
302 views

I am having the below error while trying to call another feature file which will launch the Splunk UI to capture a accessToken and returns to my feature where I am going to use that token to run my ...
Phani Bhushan Manne's user avatar
0 votes
1 answer
62 views

I am new in Cucumber and want to write optime code for 50 test cases. Every test case has different examples (set of test data flags) and different one when, different one then steps. How can I write ...
Rahil Kumar's user avatar
1 vote
2 answers
404 views

This is an example of my runner class. @RunWith(Cucumber.class) @CucumberOptions( tags = "@tryout", plugin = {"pretty", "html:target/cucumber-...
Said's user avatar
  • 33
0 votes
0 answers
202 views

I have the below use case. I have multiple feature files each feature file consists of scenarios as listed below. Feature1: @capture Scenario C1: @capture Scenario C2: . . . @capture Scenario Cn: @...
Avi's user avatar
  • 29
0 votes
2 answers
869 views

If I have a feature that looks like this: Feature: My feature Scenario Outline: My scenario outline. Given foo When bar Then I get the status code "<Status Code>". ...
DrRelling's user avatar
  • 312
0 votes
1 answer
257 views

I have a test project that tests an application that's constantly getting updated. As such, I'm asked quite frequently to run regression tests for it and to keep track of which report is for which ...
Sparsh Sondhi's user avatar
1 vote
1 answer
176 views

Are there some API (for Java lang) which can be used to: Retrieve the list of features files and all their scenarios Retrieve list of tags With information from 1 and 2, run a subset of these feature/...
florin's user avatar
  • 807
1 vote
1 answer
456 views

I have multiple feature file with the tags @run_first @run_second @run_third file m.feature Feature: test feature1 Background: * print " test feature1" @run_first Scenario: run first ...
Birendra Kumar's user avatar
1 vote
1 answer
266 views

I might be a little bit light on the mechanism of how Cucumber works with Spring, but my current understanding is that if there's a class on the classpath with some Cucumber hook in it, the Cucumber ...
David Kubecka's user avatar
0 votes
0 answers
32 views

Pom .xml <plugin> <groupId>net.masterthought</groupId> <artifactId>maven-cucumber-reporting</artifactId> <...
Shubha Rao's user avatar
0 votes
0 answers
375 views

I'm trying to use the Cucumber Junit Platform engine for running my cucumber tests, but none are run. They're all placed inside resources/features. I have a RunCucumberTest.java class: @Suite @...
Pablo Fradua's user avatar
0 votes
1 answer
281 views

I have this issue when I try to run pipeline in Azure DevOps, I work with selenium + cucumber + java. I have this error message : npm WARN deprecated [email protected]: Please upgrade to version 7 or higher....
zd ha's user avatar
  • 13
1 vote
1 answer
2k views

I checked some similar questions, but did not found an answer for mine. The most similar question was this question, but it's for TestNG. May be somebody faced an issue like me and solved it already? ...
DJ-Glock's user avatar
  • 1,453
0 votes
0 answers
368 views

My project have 2 runners files and and 3 feature files and I was using cucumber 4. My team wants to upgrade to cucumber 6 and I am running through terminal using below command mvn test -DEnv=qa -...
kamala priyanka's user avatar
0 votes
1 answer
52 views

Newbie/refresher at Cucumber in Java and have searched stack overflow trying various fixes (removing the scope from the JUnit dependency, changing the program structure language to 10, restarting and ...
Kirsty Meredith's user avatar
1 vote
1 answer
457 views

Created a new Java Cucumber project with the command - mvn archetype:generate "-DarchetypeGroupId=io.cucumber" "-DarchetypeArtifactId=cucumber-archetype" "-DarchetypeVersion=...
user22566874's user avatar
1 vote
0 answers
16 views

we're using Karate Framwork in our project for API automation so the karate its basically work with a cucumber feature file(Gerkhin keyword based) so is that possible to connect zephyr board with this ...
Dinesh's user avatar
  • 11
0 votes
1 answer
2k views

I updated the serenity version. We used the 3.3.2 version and I updated to use the most recent one 3.9.8. The new version broke the serenity report generation. The report is not generated anymore in ...
Vayas Zsolt Marton's user avatar
0 votes
1 answer
205 views

We are running Cucumber Tests and upload the results into Jira using the xRay Plugin. The uploaded report is a cucumber json report. Sometimes we attach files to the cucumber scenario and therefor to ...
Tobi's user avatar
  • 13
0 votes
1 answer
1k views

I am testing a Springboot application using cucumber (v7.2.3). I have a feature file to test application using @SpringBootTest and @Suite (from junit-platform) I am using @ConfigurationParameter to ...
Prashant Bhardwaj's user avatar
0 votes
1 answer
1k views

I am using EmbeddedActiveMQResource in my spring boot. While running the integration tests I see lots of javax.jms.JMSException: Failed to create session factory and this is because I am not ...
DarkCrow's user avatar
  • 860
0 votes
0 answers
106 views

I have cloned the java-cucumber project and opened in IntelliJ, when I start doing debugging, I am not able to do it. I can set the break points but execution is not stopping at the debug pointer. I ...
Manjunath Kotagi's user avatar
0 votes
0 answers
170 views

There is a requirement where I have to add extension in browser before running scripts. For that I decided to use Browser Options (EdgeOptions).Browser option is introduced in selenium 4. All required ...
Sumit Soni's user avatar

1
2 3 4 5
12