-
Notifications
You must be signed in to change notification settings - Fork 397
New issue
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
[do not merge] add value in find_element by identifier #416
Conversation
What do you think @mykola-mokhnach ? |
Hm, is '"hello" IN identifiers' faster? |
try |
Hm, it seems the syntax of
like below commands also had no good results. (no element)
|
Yes, the error makes sense. We could try to add identifiers check into
Also, |
note that this value is in Instead of them, we must find it via So, Ruby test should be like Will update Ruby code. And write a brief guide about this breaking change for users. Will keep this PR as [do not merge] for now to leave note for me. (Moved to a draft) |
As a side note: As XCTest, it is
|
This regression happened on both Xcode 11 and 12. (Haven't tested on 10, but I think Xcode 10 also had the same issue)
find_element :name, 'hello'
in below got a regression. The value typed in a field only appeared invalue
in the page source. But current logic tied to find an element only byname
.https://github.com/appium/ruby_lib_core/blob/master/test/functional/ios/patch_test.rb
Current:
Will be:
1.18.3 was like below to find the
hello
element.The page source is https://gist.github.com/KazuCocoa/4d874d41a8dc9c2d54d1053000768361