I have implemented data driven framework and so my isTextPresent function might have dynamic values. Also, I need to have a lot of assert texts in my application. I tried using xpath like
boolean b=driver.findElement(By.xpath("//*[contains(.,stringc3)]")).getText().contains(stringc3);
where stringc3 is the text to be checked. But this implementation is taking a very long time(with webdriverbackedselenium, my tests used to take around 3 mins but with webdriver and above code, it takes around 20mins). So is there a way to make this test run faster?
I came to know that these functions are now supported for exports from selenium ide(http://code.google.com/p/selenium/source/detail?r=17718)
So, is there any plan to implement isTextPresent function in webdriver?
*in your query, so the XPath engine will go off and search every single element in the entire page. Second, I'm not sure why you are checking the text twice? You check it once in the XPath, and again in code. Why? Third, do you have any timeouts implemented? Selenium will wait the entire length of these timeouts. Fourth, have you tried using other drivers? Is it slow on particular drivers? – Arran Sep 21 '12 at 13:39