i am new to QTP, i have a question regarding to Descriptive Programming, i want to update the Page url dynamically in the repository of the associated repository, when ever the page loads in the browser.
dim url,set_url
With Browser("Browser")
url= .GetROProperty("url")
set_url= "title:='"&url&"'"
MsgBox set_url
.Page("title:='"&url&"'").Link("Home")
End With