Skip to content

Tag: xpath

XPath Selector to get IMDB release Date

I am practicing using Xpath selectors, and it seems to be very difficult to extract the release date from this website. I can get to the div class=’txt-block’, but not past that. I am trying to the get the date underneath it. E.g. “18 July 2008 (USA)” https://www.imdb.com/title/tt04685…

“selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element” while clicking a ‘Next’ button with Selenium

I’m trying to click the Next button using Selenium, I’ve tried with the code below, but it ends in error. The element My code But then it outputs these errors: How can I click that button without errors? Answer This error message… …implies that the ChromeDriver was unable to locate the desir…

Web scraping a text() in python

I am having trouble with a web scraping function. The XPath for the two things I am trying to get are The html is I am trying to have a function to loop through each li in tr[5]. The problem I am having is getting the text(). I have tried a number of different variations of this function This specific