I have to check whether a particular text exists on a page using Selenium::Remote::Driver.
I want to enter a particular text in the search and check whether this text exists on the page
type a text in seach-box
my $such_inhalt = "fuer";
my $such=$driver->find_element("term","name");
$such->send_keys($such_inhalt);
search
$driver->find_element('//*[@id="searchsubmit"]')->click;
Result: check if the text found from search or not