Cannot get my features files recognized by aws device farm

岁酱吖の 提交于 2019-12-11 17:19:05

问题


I am having an issue running my cucumber project with device farm. I am getting this error:

[TestNG] Caused by: java.lang.IllegalArgumentException: Not a file or directory: /tmp/scratchheDEgq.scratch/test-packagex5ZhYf/src/test/java/cucumber/features

I understand from this message that there is an issue with the path of the features directory in my project but locally it works.

This is how I put it in my code:

@CucumberOptions(features = "src/test/java/cucumber/features", glue = "cucumber.steps")

Should I provide a different path to device farm? What am I missing here?

Thanks


回答1:


By default the src/test/java/cucmber directory(if it exists in the project) is not included the *-test.jar file. Try putting the feature files in the src/test/resources directory as shown in the Device Farm sample project.

https://github.com/aws-samples/aws-device-farm-appium-cucumber-tests-for-sample-app/tree/master/src/test/resources/LoginTest

Alternatively, you can implement the testResources tags in the pom.xml to explicitly reference another directory besides src/test/resources assuming that we're using maven:

<testResources>
     <testResource>
        <directory>${project.basedir}/src/test/YOUR_DIRECTORY_HERE</directory>
     </testResource>
</testResources>

Check out this link for more info on the testResources tag https://maven.apache.org/pom.html#Resources

testResources: The testResources element block contains testResource elements. Their definitions are similar to resource elements, but are naturally used during test phases. The one difference is that the default (Super POM defined) test resource directory for a project is ${basedir}/src/test/resources. Test resources are not deployed.

HTH

-James



来源:https://stackoverflow.com/questions/56150150/cannot-get-my-features-files-recognized-by-aws-device-farm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!