Issue
When I try to click on an xpayh that contains some text, it rises an error
'str' object is not callable
Code:
some_text = 'GET'
driver.find_element(By.XPATH("//*[contains(text(), '" + some_text + "')]")).click()
Solution
You are using a wrong syntax.
Try this:
some_text = 'GET'
driver.find_element(By.XPATH, "//*[contains(text(), '" + some_text + "')]").click()
Answered By - Prophet
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.