The following code will not work using title or name for either Browser or Page:
If I use creationtime:=0 or index:=0 it works fine but nothing works using attributes name or title. Any thoughts? Is there an environment issue? I have tried on different computers.
Thanks.
Solved, it was the brackets in the name/title - needed to escape them with:
Thanks.
Code:
Browser("title:=OpenSSO (Login)").Page("title:=OpenSSO (Login)").WebEdit("title:=IDToken2").Set "MyName"
If I use creationtime:=0 or index:=0 it works fine but nothing works using attributes name or title. Any thoughts? Is there an environment issue? I have tried on different computers.
Thanks.
Solved, it was the brackets in the name/title - needed to escape them with:
Code:
Browser("name:=OpenSSO \(Login\)").Page("title:=OpenSSO \(Login\)").WebEdit("html id:=IDToken1").Set
Thanks.