Chromium Code Reviews| Index: chrome/test/chromedriver/client/webelement.py |
| diff --git a/chrome/test/chromedriver/client/webelement.py b/chrome/test/chromedriver/client/webelement.py |
| index 5d7dda689f0e5a894946f94d200d669b56d25018..ebfbc7e95a15a04b933162313d6aa8fcd5138457 100644 |
| --- a/chrome/test/chromedriver/client/webelement.py |
| +++ b/chrome/test/chromedriver/client/webelement.py |
| @@ -51,3 +51,6 @@ class WebElement(object): |
| def GetLocation(self): |
| return self._Execute(Command.GET_ELEMENT_LOCATION) |
| + |
| + def IsDisplayed(self): |
| + return self._Execute(Command.IS_ELEMENT_DISPLAYED) |