I will test a web-app. there is a button available in my table to select all entries. I've tried:
driver.wait.until(ExpectedCondition.element_to_be_clickable((By.XPATH, "myXpath"))).click()
Selenium clicks on the button, but nothing happens. (also with send_Keys(Keys.Return)) the application is developed with GXT, I think that there is much javascript behind the button. Is there is a possibility to wait until an event loader is ready? waiting before a click solves the problem, but not a solution for automated testing.