I have the following list in a webpage that I am trying to scrape:
<div class="rcbScroll rcbWidth" style="height: 54px; width: 100%;">
<ul class="rcbList">
<li class="rcbItem">Jules Salles-Wagner (FRENCH, 1814–1898)</li>
<li class="rcbItem">Peter Nadin (BRITISH, 1954)</li>
<li class="rcbItem">Uri Aran (ISRAELI, 1977)</li>
</ul>
</div>
I want to select the item that contains the text Uri Aran. How can I do that through Selenium? There are other lists with different class name in the same website as well.