.until(ExpectedConditions.presenceOfElementLocated(
By.id(ElementIds.getElementId(ElementIds.FIND_REPLACE_BAR))));
// Type the text and the text to be replaced (replace 'bar' with 'foo')
Actions rep = new Actions(driver_);
rep.sendKeys("bar" + Keys.TAB + "foo" + Keys.ENTER);
rep.perform();
DialogTestUtils.respondToModalDialog(driver_, "OK");
Actions dismiss = new Actions(driver_);