I tried this method getText() and set ConsoleLogLevel to OFF, but still shows Logging information in console.
caps.setCapability(SeeTestCapabilityType.CONSOLE_LOG, SeeTestConsoleLogLevel.INFO);
Set categoryName=new HashSet();
List weCategories=driver.findElements(By.xpath(“xpath=//*[@resource-id=‘com.flipkart.android:id/product_widget_title’]”));
for(int i=0;i<noCatogeries;i++)
{
categoryName.add(weCategories.get(i).getText());
}
After executing this, i am getting console output of getText() method used above. Can this be disabled?