0

I have to click the following tag button which is a part of an infinite scrolling page.

<span> Show More Results </span>

I have tried the following but it didn't help

driver.find_elements_by_xpath('.//span[Show More Results]').click()

1 Answer 1

1

Try with

.//span[contains(text(),'Show More Results')]

In your case it seems like you missed quotes around 'Show More Results' and also consider any white spaces

Sign up to request clarification or add additional context in comments.

1 Comment

Thanks, but I had found another way to handle this.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.