Selenium WebDriver nie może znaleźć elementu według tekstu łącza

Próbuję wybrać element zawierający kotwicę, ale tekst jest zakopany w akapicie wewnątrz div. Oto HTML, z którym pracuję:

<a class="item" ng-href="#/catalog/90d9650a36988e5d0136988f03ab000f/category/DATABASE_SERVERS/service/90cefc7a42b3d4df0142b52466810026" href="#/catalog/90d9650a36988e5d0136988f03ab000f/category/DATABASE_SERVERS/service/90cefc7a42b3d4df0142b52466810026">
<div class="col-lg-2 col-sm-3 col-xs-4 item-list-image">
<img ng-src="csa/images/library/Service_Design.png" src="csa/images/library/Service_Design.png">
</div>
<div class="col-lg-8 col-sm-9 col-xs-8">
<div class="col-xs-12">
    <p>
    <strong class="ng-binding">Smoke Sequential</strong>
    </p>

Kod, którego używam, aby spróbować go schwytać, jest kierowany na tekst „Smoke Sequential” za pomocą:

driver.findElement(By.linkText(service)).click();

Gdzie zmienna „usługa” zawiera w sobie „Smoke Sequential”. Po uruchomieniu otrzymuję następujący błąd:

org.openqa.selenium.NoSuchElementException: Unable to locate element: {"method":"link text","selector":"Smoke Sequential"}

Każda pomoc byłaby bardzo mile widziana.

questionAnswers(5)

yourAnswerToTheQuestion