07-27-2010, 02:55 PM
ok, after submit, use GetROProperty method to get the search result headings, if the properties of the page are not uniquely identified use descriptive programing. and keep them in a array. See the example, do not take as it is , try urself and apply your logic.
Ex:
After you have value in your array, use the logic to write the header in your excel.
Ex:
Code:
Dim sHeaderArray(100)
For i = 0 to n 'specify your limit for value of n
sHeaderArray(i) = Browser("Browser").Page("Google").Link().GetROProperty("text")
Next