There was an error while loading. Please reload this page.
This works : PageFactory.initElements(new AppiumFieldDecorator(myDriver), this);
This is not Working : PageFactory.initElements(new AppiumFieldDecorator(myDriver), MyClass.class);
Why?
This works :
PageFactory.initElements(new AppiumFieldDecorator(myDriver), this);
This is not Working :
PageFactory.initElements(new AppiumFieldDecorator(myDriver), MyClass.class);
Why?