[Solved] How to create and write a module for automation test framework

Just go with page object model. It’s simple only. Refer this link. http://toolsqa.com/selenium-webdriver/page-object-pattern-model-page-factory/ Ex: Keep Header.java and Move the locator elements to Header.java Similarly Catergory.java and Move the locator elements to Category.java Then SampleTest.java, Call the locator method in the test file…. That’s all……. solved How to create and write a module for automation test … Read more

[Solved] Error while using ruby cucumber and calabash? [closed]

The error Permission Denial: starting instrumentation Component means that you don’t have the right debug key. If you have the keystore and it was working before then check that the keystore hasn’t been updated. If you don’t have the keystore you can resign the app with your own. calabash-android resign app.apk From – https://github.com/calabash/calabash-android/wiki/Running-Calabash-Android The … Read more