achand
13 years agoContributor
capturing entire page
If there any way we can capture entire page, the page scroll bar.
- 13 years ago
Hi,
You can access the web page from your test using the following syntax:
// Obtain the browser process
var browser = Sys.Browser("iexplore");
// Obtain the page currently opened in Internet Explorer
var page = browser.Page("*");
Also, if you need to access the page's scroll bar, I recommend that you use the ScrollBar program object.
Does this information help?