我正在尝试单击一个按钮登录,但即使单击按钮后,我也会收到超时异常。
我已经验证了代码并确认我使用了正确的定位器。
描述:CAP Demo 导航到 GitHub 网站,使用搜索功能找到 React 存储库,然后转到存储库的主页演员:- 演员:WEB 段:- 段:1 操作:- 描述:导航到 GitHub 主页操作:org。 getopentest.selenium.NavigateTo 参数:网址: http: //192.168.200.98 :8780/CAFPortal/#/login
- description: Enter Login id
action: org.getopentest.selenium.SendKeys
args:
locator: {xpath: "//*[@id='login']/app-root/app-caf-login/div/div/div[2]/form/div[1]/input"}
text: ksood
sendEnter: true
- description: Enter password
action: org.getopentest.selenium.SendKeys
args:
locator: {xpath: "//*[@id='login']/app-root/app-caf-login/div/div/div[2]/form/div[2]/input"}
text: Acs@2018
sendEnter: true
- description: Pause for 60 second
action: org.getopentest.selenium.ActionsPause
args:
durationMs: 60000
- description: Display a greeting dialog box in the browser
action: org.getopentest.selenium.ExecuteScript
args:
script:
var message = "Hello World!";
alert(message);
- description: Click on sign in
action: org.getopentest.selenium.Click
args:
locator: {xpath: "//*[@id='login']/app-root/app-caf-login/div/div/div[2]/form/div[3]/div/div/button"}
只希望最后一个测试用例通过