Forum Discussion
chicks
13 years agoRegular Contributor
I'm using 8.60.665.7 I had problems converting to TC 9.0 when I first attempted it and have not switched back.
It sounds like this is a known problem? Is there a work-around other than updating to a new version?
I'm actually using the .SetText method on the other elements, so don't know whether the other keys can be clicked or not.
Here is my Click routine.
function Click(linkOrButton)
{
if(linkOrButton.Exists)
{
linkOrButton.Click();
Sys.Process("iexplore").Page("*").Wait();
}
else
{
Log.Error("Couldn't find object to Click.");
//throw exception;
}
}
It sounds like this is a known problem? Is there a work-around other than updating to a new version?
I'm actually using the .SetText method on the other elements, so don't know whether the other keys can be clicked or not.
Here is my Click routine.
function Click(linkOrButton)
{
if(linkOrButton.Exists)
{
linkOrButton.Click();
Sys.Process("iexplore").Page("*").Wait();
}
else
{
Log.Error("Couldn't find object to Click.");
//throw exception;
}
}