Issue
I am practicing using Xpath selectors, and there is nothing i can do to extract the release date from this website. https://www.imdb.com/title/tt0468569/?ref_=adv_li_tt
I can get up to this part. But I cannot get the text below.
Solution
Just use :
//a[contains(@title,'release')]/text()
or
//h4[contains(.,'Release')]/parent::*/text()[normalize-space()]
Answered By - E.Wiest
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.