04-21-2013, 03:03 PM
Hi Paras,
it fails because "(", ")" , "." has got special meaning..hence it is handled through escape sequence "\" to consider their literal meaning.however this fails when the number changes.To handle that use regular expression.
or
it fails because "(", ")" , "." has got special meaning..hence it is handled through escape sequence "\" to consider their literal meaning.however this fails when the number changes.To handle that use regular expression.
Code:
x = Browser("name:=Inbox \(2,397\) - paras\.sidhu@gmail\.com - Gmail#inbox").GetROProperty("name")
msgbox x
Code:
msgbox Browser("CreationTime:=0").GetROProperty("name")