throws InterruptedException {
openTestURL();
WebElement textArea = $(TextAreaElement.class).first();
Actions builder = new Actions(driver);
builder.click(textArea);
builder.sendKeys(textArea, "first line asdf");
builder.sendKeys(Keys.ESCAPE);
builder.sendKeys(textArea, "second line jkl;");
builder.perform();
assertEquals("1. Escape button pressed", getLogRow(0));