Hi frnds
I want to search a string Wireless and Enabled in a web page
html code is as below
Can it be done using xpath mentioning tags?
i can do it using Assert.assertTrue(selenium.isTextPresent("Wireless AP"));
Assert.assertTrue(selenium.isTextPresent("
Enabled "));
But there are lof of Enabled texts in the page and i want to search this particular pattern Wireless AP and Enabled
thanks
robin