Hi,
I have project with appium and cucumber framework for apps. I have integrated with openSDK(v2) in testProject.
I m trying to implement my own reporting for my project by using driver.report().step("").
All my page classes are using AppiumDriver.
AppiumDriver driver;
public OnBoardingScreen(AppiumDriver<MobileElement> driver) {
this.driver = driver;
PageFactory.initElements(new AppiumFieldDecorator(driver), this);
}
As per the testProject, for creating report we need AndroidDriver or IOSDriver of testProject. In my project i m using AppiumDriver, i cant separate it for Android and IOS, that is the reason we are using Appium.
How can i acheive reporting for this? Can anyone please suggest something.
Thanks in advance.