开发者

Where to keep Page Objects in a Maven project

开发者 https://www.devze.com 2023-02-15 03:29 出处:网络
I\'m using the Page Objects approach with Selenium2 and wondering the best way to organize the page objects in the Maven project structure.

I'm using the Page Objects approach with Selenium2 and wondering the best way to organize the page objects in the Maven project structure.

I currently have a completely separate maven project module for functional testing, so I'm leaning towards putting the page objects in src/main/java of the test project and then the junit tests that use the page objects 开发者_高级运维in src/test/java. I guess the alternative is to put it all in src/test/java.

Any thoughts on the advantages/disadvantages to either approach?


I use following in my project -

src.test.java..library > contains page objects src.test.java..tests > contains test


You can store all page object in properties file under resources and you can read those property file use it ( .properties extension)

Source/main/resources/homepage.properties

0

精彩评论

暂无评论...
验证码 换一张
取 消