04-21-2011, 03:09 AM
Try
For example the following works
Code:
SystemUtil.Run "iexplore.exe", "http://bptest.wmic.ins/wps/portal/broker","","open"
strTitle = "\[QA\] Wawanesa Broker Portal"
' sync and get title of the initial page
With Browser("title:=" & strTitle).Page("title:=" & strTitle)
.Sync
MsgBox .GetROProperty("title")
End With
For example the following works
Code:
SystemUtil.Run "iexplore.exe", "http://www.seobook.com/video-google-seo-friendly-page-titles","","open"
strTitle = "\[Video\] Google \& SEO Friendly Page Titles \| SEO Book\.com"
With Browser("title:=" & strTitle).Page("title:=" & strTitle)
.Sync
MsgBox .GetROProperty("title")
End With