1 package com.atlassian.selenium.pageobjects;
2
3 import com.atlassian.selenium.SeleniumClient;
4
5 public class Button extends PageElement
6 {
7 public Button(String locator, SeleniumClient client)
8 {
9 super(locator, client);
10 }
11
12 public String getText()
13 {
14 return client.getAttribute(locator + "/@value");
15 }
16
17 }