I would like to find any text based WebElement using XPath.
The WebElement I'm interested in finding

Its HTML,

Basically my WebElement, which I am trying to extract by text, contains an input element.
I am currently using
driver.findElement(By.xpath("//*[normalize-space(text()) = 'Own Hotel']"));
which does not find WebElement above, but usually works to retrieve all other web elements.
Even,
By.xpath("//*[contains(text(),'Own Hotel')]")
gave me no results. Although I am interested in the exact correspondence of the text.
I am looking for a way to find a web element by text without the essential elements that are present inside the web element. If the text matches, it should return a WebElement.
Thanks!
LINGS source share