We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
猜测原因:src/androidTest/java/com/github/uiautomator/stub/Selector.java: 157 ~ 166
public BySelector toBySelector() { BySelector s = null; if ((getMask() & Selector.MASK_CHECKABLE) > 0 && android.os.Build.VERSION.SDK_INT >= 18) s = By.checkable(this.isCheckable()); if ((getMask() & Selector.MASK_CHECKED) > 0) { if (s == null) s = By.checked(isChecked()); else s = s.checkable(isChecked()); // 猜测是行的函数调用错了?应该是s.checked? }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
猜测原因:src/androidTest/java/com/github/uiautomator/stub/Selector.java: 157 ~ 166
The text was updated successfully, but these errors were encountered: