Forum Discussion
i404
14 years agoContributor
Hi Guys,
Have tried all the moethod you mention and button is still not set "Enabled" to True. What I believe it that the login page did not see the changes made in the username and password field, therefore it is not setting the button attribute "Enable" to True. Whilst I was on the login page (when execute failed), I click on either username or password box and put a space inside it, the button state changed "Enable" to "True".
Do you think TestComplete implementation of mouse or keyboard action is slightly different?
I had trouble to do that in QTP until I found this:
Setting.WebPackage("ReplayType") = 2
type username
type password
Setting.WebPackage("ReplayType") = 1
click button
where it indicates how mouse operations should be run. The value can be one of the following:
1 - Runs mouse operations using browser events.
2 - Runs mouse operations using the mouse.
Default is 1
Is there anything that's similar to this?
Thanks
Regards
Ian
Have tried all the moethod you mention and button is still not set "Enabled" to True. What I believe it that the login page did not see the changes made in the username and password field, therefore it is not setting the button attribute "Enable" to True. Whilst I was on the login page (when execute failed), I click on either username or password box and put a space inside it, the button state changed "Enable" to "True".
Do you think TestComplete implementation of mouse or keyboard action is slightly different?
I had trouble to do that in QTP until I found this:
Setting.WebPackage("ReplayType") = 2
type username
type password
Setting.WebPackage("ReplayType") = 1
click button
where it indicates how mouse operations should be run. The value can be one of the following:
1 - Runs mouse operations using browser events.
2 - Runs mouse operations using the mouse.
Default is 1
Is there anything that's similar to this?
Thanks
Regards
Ian