All Questions
1,108 questions
0
votes
1
answer
44
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
29
views
Selenide + Selenium: NoSuchMethodError in Throwables.throwIfUnchecked() when launching Chrome
I am trying to run a simple Selenide test using Selenium 4.14.1, but I keep getting this error when launching Chrome:
Exception in thread "main" org.openqa.selenium....
1
vote
0
answers
27
views
Getting error java: package org.testng.annotation does not exist while executing the first java with maven program to launch the chrome browser
I am new to java with maven program and is executing the login with orange hrm website I am using java 8 version and in the pom.xml file the selenium is
with lower verion of selenium i.e 4.11 and ...
0
votes
1
answer
343
views
Cucumber JUnit 5 mvn - no tests were found
I have a problem setting up the correct ecosystem for tests. I was following other projects, although they used Gradle, which shouldn't have a significant impact. The issue arises when I try to use ...
0
votes
0
answers
43
views
TestNG not showing in run configurations
TestNG is not showing in run configurations. Steps I took :
Create a new maven project
Adding testng dependency in the pom.xml file.
Installing Testng plugin from eclipse marketplace.
Keeping my ...
2
votes
1
answer
65
views
Maven is unable to find the org.testng package in my project
Hye!
I have included testng dependency in my pom.xml
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.10.2</version>
...
-2
votes
1
answer
36
views
How to interlinked child automation projects to create one single parent project to run e2e test case
We are having 3 projects, let's call it A, B and C
All the 3 projects having different teams working on creating automated test cases. But these 3 projects are combined to create one project
I need to ...
0
votes
0
answers
33
views
Is there any way to specify a folder where all the related jars are present in their own folder structure in Taurus yaml file?
Is there any way to specify a folder where all the related jars are present in their own folder structure in Taurus yaml file?
I am trying to run existing Selenium Java custom framework with Maven in ...
0
votes
0
answers
18
views
Running Selenium Java custom framework with Maven Runner in Taurus
I have a Test Automation Framework in Java built on top of TestNG and executable using Maven (using mvn test command).
Is it possible to run this framework using Taurus?
0
votes
0
answers
42
views
Maven build fails in Command line ; successful from eclipse
1.When I am trying to run jar file which is created by maven project through command line it is show error
2.After adding Guava version of 25.0-jre error occur
3.I am using selenium version 3.141.59 ...
0
votes
0
answers
20
views
How to solve the error Exception in thread "main" java.lang.NoClassDefFoundError: dev/failsafe/Policy [duplicate]
Exception in thread "main" java.lang.NoClassDefFoundError: dev/failsafe/Policy
at org.seleniumhq.selenium.http/org.openqa.selenium.remote.http.ClientConfig.<clinit>(ClientConfig....
0
votes
1
answer
49
views
TestNG sequential testing config file is NOT working as expected
I am trying to run two distinct test runs using the same code base: One for Android device and another for an iOS device. I am using parameters to pass some String values to feed the test cases. This ...
0
votes
0
answers
238
views
Webdriver wait variable null only when running testng.xml file but works fine when the Alltest class is run individually
Im just learning testng and am having trouble executing groups. When I run the Alltests class individually I have no issues and it completes the tests successfully. But when I try to run it through ...
0
votes
0
answers
76
views
Cucumber maven <rerunFailingTestsCount>1</rerunFailingTestsCount> does not rerun failed tests and does not create report file
could you tell me what are required dependencies to make cucumber reporting plugin working when I want to rerun failed tests ? I am using in my project the following dependencies. Could you tell me ...
1
vote
1
answer
77
views
How can I create a test automation using selenium java and UTAM?
I am working on automating website navigation using Selenium WebDriver in Java. My goal is to create a test automation script that can navigate to any website and interact with elements based on a ...