From 08c10b5b8046cf653cdc2d758cbdb66391ca32fb Mon Sep 17 00:00:00 2001 From: Luke Semerau Date: Thu, 11 Oct 2012 21:05:23 +0000 Subject: [PATCH] LukeIS: removing print statement accidentally left in r17956 --- py/selenium/webdriver/support/expected_conditions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/py/selenium/webdriver/support/expected_conditions.py b/py/selenium/webdriver/support/expected_conditions.py index 1188fbbd05daf..ecc8d3a49dd52 100644 --- a/py/selenium/webdriver/support/expected_conditions.py +++ b/py/selenium/webdriver/support/expected_conditions.py @@ -113,7 +113,6 @@ def __init__(self, locator, text_): def __call__(self, driver): try : element_text = _find_element(driver, self.locator).text - print element_text return self.text in element_text except StaleElementReferenceException: return False