Selenium2Libraryでいくつかのテストをしていますが、要素セレクタに問題があります。 私は多くを試しました。多くの異なったやり方があり、どれもうまくいかないようです。私がしたいのは、ログイン/登録機能をテストすることですが、正しい方法を見つけることができません。Selenium2Libraryセレクタの問題
*** Settings ***
Documentation This is some basic info
Library Selenium2Library
*** Variables ***
*** Keywords ***
*** Test Cases ***
Check log in and register
open browser http://www.999.md
set browser implicit wait 5
click element css=div.user-login-btn
これは私が常に取得エラーです:
ValueError: Element locator 'css=div.user-login-btn' did not match any elements.
@Priも動作しません。 –