// Locate the Search field on the Google page
WebElement element = d.findElement(By.name("q"));
// Type Cheese
element.sendKeys(strToSearchFor);
// Submit form
element.submit();
// Check results contains the term we searched for
assertTrue(d.getTitle().toLowerCase().contains(strToSearchFor.toLowerCase()));
}
}