There is such a structure
<div class="b-player-skin__header-inner"> <span>007: СПЕКТР</span> <div class="b-player-skin__header-origin">Spectre</div></div></div> <div class="b-player-skin-left"> <div class="b-player-skin__poster-wrap"> <a class="b-player-skin__poster-image" indx="0" rel="#b-screenshots-gallery" href="#"> <img src="http://img.dotua.org/fsua_items/cover/00/38/41/1/00384173.jpg" ></a></div></div></div> It is necessary to obtain information about the film, Russian title, ang and a link to the image. Is it possible to extract text from a specific class in a specific tag? Just in the div tag, for example, not just this title.
My code is titleRus = doc.select("div").select("span").text(); getting it all the same. Is there something like this titleRus = doc.select("div" из class="b-player-skin__header-inner" ).select("span").text();
That is, the div tag has class="b-player-skin__header-inner" and you need to get data from the nested span tag.
Maybe not quite correctly asked the question, but I think the essence can catch. Thanks in advance and with ACCESS !!!)))