I’m running Selenium via a Jenkins Maven job. The job is running on a separate Jenkins agent without a remote desktop session open to it. When I run in Selenium 3.141.0 with IEDriverServer 2.53.1.0 it works fine. However, running with Selenium 4.1.3 and IEDriverServer 4.0.0.0 throws a SessionNotCreatedException. Note that if I keep a remote desktop session open it works
Tag: jenkins
Error integration Allure reporting with Jenkins. Can’t find allure commandline
Please help, I just have no clue what is going wrong, I’ve tried everything… This is a QA test project, based on java17, maven, testng. Integrеtion between Jenkins and Allure doesn’t work, what is going wrong? I have post condition in Jenkins file : And when I’m running pipeline on Jenkins side, I get below error in console output Pipeline
Installing jenkins on Linux Mint 20.2
I’ve Linux Mint 20.2 Cinnamon and I tried to install jenkins. Detailed steps for installation is as below: 1. Installing java – installed via apt I’ve also added JAVA_HOME in ~/.zshrc which gives: 2. Installing jenkins I’ve tried with different versions of java, yet the same error. What am I doing wrong? Related solutions that I tried, but failed: [1],
When i run the build in Jenkins i got this Error : Cannot find firefox binary in PATH. Make sure firefox is installed
I created a job Maven Project in Jenkins for the purpose to Compile and execute all my automatic tests, but when i build the job i got this error : i got the same message error for all the scenarios should i create a pipeline in place of project maven ? i recupare my project with the link ssh GitLab
Jenkins BUILD_LOG_REGEX ( emailext plugin ) does not match across multiple lines ( dotall )
Background I am trying to use the BUILD_LOG_REGEX environment variable, which is provided by the emailext plugin, to filter a build log. My regular expression is suppose to match everything between the “init:” and “Total time” strings. My regular expression is as follows init:(.*?)Totalstime The Jenkins emailext code is as follows The build log is as follows While this works
What is the purpose of “ext: ‘jar'” in dependencies config?
I see a lot of build.gradle configs with this setting: what is ext: ‘jar’ do? ext is DefaultExtraPropertiesExtension but I can’t find docs for what “jar” is. If I take off the ext: jar in this example I get an error for what looks like a transitive dependency: Is “jar” downloading a precompiled uber jar or something instead of a
How to copy keystore.jks file to jenkins workspace using credentials parameter secret file type?
My application using jks type keystore file. I have to secure it using jenkins credentials parameter’s secret file. Write file using below code to jenkins workspace. But keystore corrupted by above way. throw Invalid keystore format error Caused by: java.io.IOException: Invalid keystore format at java.base/sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:659) at java.base/sun.security.util.KeyStoreDelegator.engineLoad(KeyStoreDelegator.java:222) at java.base/java.security.KeyStore.load(KeyStore.java:1479) at org.springframework.security.saml.key.JKSKeyManager.initialize(JKSKeyManager.java:117) Please help me to write keystore file into jenkins
How to solve Jenkins This site can’t be reached localhost refused to connect Error?
I have got This site can’t be reached localhost refused to connect Error on the browser in the first run of Jenkins after the installation.So I have tried to solve this issue so many times by re installing Jenkins. But unfortunately non of the attempts didn’t success.By going through the Resource Monitor –> Network –> Listening Ports on Windows 10
Jenkinsfile task getting faild [Unsupported class file major version 57]
Background: I got this error earlier [Unsupported class file major version 57] This error means that my version of Java is incompatible with the one with which Gradle was compiled. My Gradle version was Gradle 6.0.1 and JDK version was openjdk 13.0.2. So i downgrade JDK to JDK 11 and issue was resolved. I was able to run task “./gradlew
Unable to load a groovy classes
I am trying to serialize and deserialize a groovy object with the below class in the jenkins pipeline. SerializationUtil.groovy Test.groovy Jenkins pipeline script I was able to serialize the object but not deserialize. I am getting the below exception. From the exception, I could see that GroovyClassLoader is not called and I assume that might be the issue. Answer The