Skip to content

Instantly share code, notes, and snippets.

@tilltue
Created June 26, 2018 06:20
Show Gist options
  • Save tilltue/d483c4918e0a35eec31f008a2225dbf0 to your computer and use it in GitHub Desktop.
Save tilltue/d483c4918e0a35eec31f008a2225dbf0 to your computer and use it in GitHub Desktop.
얼그레이 한글로 객체 찾을시 공백 문제
EarlGrey.select(elementWithMatcher: Matches.displayLabel(text: "캠코더").matcher)
EarlGrey.select(elementWithMatcher: grey_text("캠코더"))
//- 요것들은 성공하지만
EarlGrey.select(elementWithMatcher: Matches.displayLabel(text: "고급 가방").matcher)
EarlGrey.select(elementWithMatcher: grey_text("고급 가방"))
//- 요건 실패한다
//공백이 있으면 찾지 못하는 듯 하다.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment