【QTP】Page对象:获取页面的链接和图片的个数

Page对象是页面的主体对象,用于包含各种Web控件,通过Page对象,可以访问下一层次的对象,例如页面的链接、图片等。
下面的例子就是获取页面中还包含的链接和图片的个数

Browser("Welcome: Mercury Tours").Page("Welcome: Mercury Tours").Link("REGISTER").Click

'等待浏览器完成当前导航动作,用于模拟用户等到页面加载完成的过程
browser("Welcome: Mercury Tours").Page("Welcome: Mercury Tours").Sync<wbr style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><br style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><span style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left; background-color:rgb(229,231,231)">linksCount = browser("Welcome: Mercury Tours").Page("Welcome: Mercury Tours").Object.links.length</span><br style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><br style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><span style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left; background-color:rgb(229,231,231)"></span><wbr style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><span style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left; background-color:rgb(229,231,231)">print "链接总共有:" &amp; linksCount</span><br style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><br style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><span style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left; background-color:rgb(229,231,231)">ImagesCount = browser("Welcome: Mercury Tours").Page("Welcome: Mercury Tours").Object.images.length</span><br style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><br style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><span style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left; background-color:rgb(229,231,231)"></span><wbr style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left"><span style="color:rgb(70,70,70); font-family:simsun; font-size:14px; line-height:21px; text-align:left; background-color:rgb(229,231,231)">print "图片总共有:" &amp; ImagesCount</span><br></wbr></wbr></wbr>

你可能感兴趣的:(page)