Robot Framework 无法定位页面上的任何元素

问题描述 投票:0回答:1

我正在使用浏览器库对 SuiteCRM 实例进行机器人框架测试。我无法在包含帐户列表的页面上找到任何元素。

页面的HTML代码位于此处:https://autera.cz/accounts_html.html

例如,我想用

//scrm-module-title[@class='list-view-title']
单击表标题 ACCOUNTS。 我可以使用浏览器在本地访问它,但不能通过 Robot Framework 访问它。我看不到任何 iframe 或其他类似标签。问题是什么? 预先感谢您的建议。

我想找到该元素。但没有任何结果。

html automated-tests robotframework
1个回答
0
投票

这是有问题的代码部分:

*** Test Cases ***
Check list of accounts
    [Documentation]    Navigate to list of accounts and check it
    ${LEAD}=    Load dataset from file "fixtures/account1.json"
    Navigate into List of "Accounts"
    Click    div[class='app-shell']
    Click    //scrm-navbar-ui
    Click    xpath=//scrm-module-title[@class='list-view-title']

© www.soinside.com 2019 - 2024. All rights reserved.