・getText()…指定されたタグ内のテキストを取得する。
タグに囲まれたテキストが欲しければこっち。
・getAttribute(String param)…引数で渡された属性の値を取得する。
value欲しければこっち。
<input id="sample" attr1="aaa" attr2="bbb" attr3="ccc">foo</input>
String test = driver.findElement(By.id("sample").getAttribute(attr1) // "aaa"
String test = driver.findElement(By.id("sample").getAttribute(attr2) // "bbb"
String test = driver.findElement(By.id("sample").getAttribute(attr3) // "ccc"
String test = driver.findElement(By.id("sample").getText // foo