Forum Discussion

DIMWSH's avatar
DIMWSH
New Contributor
7 years ago
Solved

Testobject.Click doesnt always work

I'm testing a web application and I have a few actions on test objects that involve clicking a button or a link to navigate to a different page, or to click a radio button on a page. All of these tes...
  • tristaanogre's avatar
    7 years ago

    Without knowing more detail about the specifics of the objects, my best guess is that the "Click" action is being performed just fine but the object being clicked may not be ready to be clicked... It's present on screen but not enabled, or there's a background process that needs to finish, or something like that.  It has all the earmarks of a "timing" problem where the automation is running faster than the application can perform.  I'd start with adding logic to check the component in question to determine if it is ready to be clicked before executing the click.