DOM Scripts

Try the below Scripts using Document Object Model on Google web page
ADD Google webpage in Repository

s=Browser("Google").Page("Google").Object.cookie
msgbox s

s=Browser("Google").Page("Google").Object.documentElement.innerhtml
msgbox s

s=Browser("Google").Page("Google").Object.documentElement.innertext
msgbox s

s=Browser("Google").Page("Google").Link("Hindi").Object.currentStyle.color
msgbox s

s=Browser("Google").Page("Google").Link("Hindi").Object.currentStyle.fontfamily
msgbox s

s=Browser("Google").Page("Google").Object.readyState
msgbox s

s=Browser("Google").Page("Google").Object.url
msgbox s

s=Browser("Google").Page("Google").Object.getElementsByName("INPUT")
msgbox s

Comments