从smartbear官方网站上给出的例子来看
# The following routine checks the width and height attributes of
# IMG elements located on a web page.
def Test():
# Obtains the page object
url = "****";
Browsers.Item[btChrome].Run(url);
page = Sys.Browser("*").Page("*");
# Obtains the page's images
images = page.contentDocument.images;
Log.Message(images.length)
for img in images: # <<<<<<<This is the error
# other calculating stuff
当我在testcomplete中执行这个代码片段时,我遇到了一个错误
Log.Message(images.length)
得到的结果是9,这是预期的。在
我还试图获取类型,Log.Message(type(images))
给了我一个空白输出。在
有什么建议吗?在
目前不支持像处理可索引集合一样使用此images数组。您在official website上引用的示例具有不同的代码:
相关问题 更多 >
编程相关推荐