指定的对象不是indexab

2024-09-10 08:29:47 发布

您现在位置:Python中文网/ 问答频道 /正文

从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))给了我一个空白输出。在

有什么建议吗?在


Tags: thelogurlmessage错误pagelength例子