TypeError: Checker.return_text() missing 1 required positional argument: 'locator_value' #14
Answered
by
Montekkundan
SachinSoni4619
asked this question in
Q&A
-
g = run.return_text("//a[normalize-space()='Parking']") This keeps giving error : |
Beta Was this translation helpful? Give feedback.
Answered by
Montekkundan
Sep 26, 2022
Replies: 1 comment
-
You have to add a selector (xpath, css etc) : Try doing this: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
SachinSoni4619
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have to add a selector (xpath, css etc) :
Try doing this:
g = run.return_text("xpath", "//a[normalize-space()='Parking']")