We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2b824e commit 7ac4131Copy full SHA for 7ac4131
src/main/java/io/appium/java_client/pagefactory/AppiumFieldDecorator.java
@@ -193,8 +193,8 @@ protected boolean isDecoratableList(Field field) {
193
* @return a field value or null.
194
*/
195
public Object decorate(ClassLoader ignored, Field field) {
196
- Object result = defaultElementFieldDecorator.decorate(ignored, field);
197
- return result == null ? decorateWidget(field) : result;
+ Object result = decorateWidget(field);
+ return result == null ? defaultElementFieldDecorator.decorate(ignored, field) : result;
198
}
199
200
@Nullable
0 commit comments