关键字 'Selenium2Library.Click Element' 需要 1 到 3 个参数,得到 0
Keyword 'Selenium2Library.Click Element' expected 1 to 3 arguments, got 0
我正在尝试使用 robotframework select 下面列表中的第一项:
<select id="organization_saml_enabled" name="organization[saml_enabled]">
<option value="true">SAML SSO enabled</option>
<option value="false" selected="selected">SAML SSO disabled</option>
</select>
使用此代码段:
Click Element //select[@id="organization_saml_enabled"]/option[@value="true"]
我收到错误 Keyword 'Selenium2Library.Click Element' expected 1 to 3 arguments, got 0.
我不明白,因为根据我的理解 documentation,点击元素需要定位器和可选的偏移量。
谁能帮我检查一下我在这里遗漏了什么。
在实际定位器之前添加定位器策略 (xpath:
),并记住在关键字和参数之间至少有两个空格:
Click Element xpath://select[@id="organization_saml_enabled"]/option[@value="true"]
不要使用 Selenium2Library,使用最新版本的 SeleniumLibrary。
我正在尝试使用 robotframework select 下面列表中的第一项:
<select id="organization_saml_enabled" name="organization[saml_enabled]">
<option value="true">SAML SSO enabled</option>
<option value="false" selected="selected">SAML SSO disabled</option>
</select>
使用此代码段:
Click Element //select[@id="organization_saml_enabled"]/option[@value="true"]
我收到错误 Keyword 'Selenium2Library.Click Element' expected 1 to 3 arguments, got 0.
我不明白,因为根据我的理解 documentation,点击元素需要定位器和可选的偏移量。 谁能帮我检查一下我在这里遗漏了什么。
在实际定位器之前添加定位器策略 (xpath:
),并记住在关键字和参数之间至少有两个空格:
Click Element xpath://select[@id="organization_saml_enabled"]/option[@value="true"]
不要使用 Selenium2Library,使用最新版本的 SeleniumLibrary。