yeah that is okay by me. thanks
You send me a reminder 30 minutes before time.
Hey @mherman22 wonât make it as planned. Will be available at 8:30 pm, let me know if it works for you too!
Thanks @kdaud lets do 10:30 am Monday morning
You send me a reminder 30 minutes to time!
After looking into the pom.xml configurations for operating systems, I discovered devs using windows os at the moment can not simulate tests locally.
<executions>
<execution>
<id>make-mac-chromedriver-executable</id>
<phase>process-test-classes</phase>
<configuration>
<target>
<chmod file="target/test-classes/chromedriver/mac/chromedriver" perm="755" />
</target>
<failOnError>false</failOnError>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>make-linux-chromedriver-executable</id>
<phase>process-test-classes</phase>
<configuration>
<target>
<chmod file="target/test-classes/chromedriver/linux/chromedriver" perm="755" />
</target>
<failOnError>false</failOnError>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>make-mac-firefoxdriver-executable</id>
<phase>process-test-classes</phase>
<configuration>
<target>
<chmod file="target/test-classes/firefoxdriver/mac/geckodriver" perm="755"/>
</target>
<failOnError>false</failOnError>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>make-linux-firefoxdriver-executable</id>
<phase>process-test-classes</phase>
<configuration>
<target>
<chmod file="target/test-classes/firefoxdriver/linux/geckodriver" perm="755"/>
</target>
<failOnError>false</failOnError>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
Am now looking into RATEST-193 to have the issue sorted out soon!
Eagerly awaiting the work on the above ticket. Thanks @kdaud for working relentlessly
Well done @kdaud , @mherman22 are you still facing the same challenge as above ?
Yeah,but I believe that will be resolved in the ticket above quoted by @kdaud since it addressses exactly what Iâm facingâŠthe qaframework/pom.xml
file doesnât address windows os but only linux and mac
Check executions in the attachment Here
Sounds good , Probably lets give time to @kdaud for a solution am also looking deeply into that meanwhile .
Reviewed and merged!
@mherman22 pull the latest changes from qaframework and things should work fine.
thanks for the work, let me try it out
Building qaframework module using mvn clean install -DskipTests=true
to install the dependencies on windows os should be now passing.
Still figuring why running an existing workflow is failing. Well am using a virtual simulation for windows os and not sure whether geeks running windows os workflows are passing. @mherman22 @sharif are you observing the same scenario ?
Building qaframework module using mvn clean install -DskipTests=true
to install the dependencies on windows os should be now passing.
Still figuring why running an existing workflow is failing. Well am using a virtual simulation for windows os and not sure whether geeks running windows os tests are passing. @mherman22 @sharif are you observing the same scenario
Sorry am currently running on linux os ,May be @mherman22 can update us
The individual workflows still fail even when the dependencies are installed successfully and throw a BUILD SUCCESS
This is a success !
Are the logs the same for both firefox and chrome driver? If not share their respective logs
Actually it is the same log all throughout. And Here you go