Selenium2Library常用关键字中的get Title怎么用
时间: 2024-05-10 22:20:57 浏览: 67
Robot Framework-Selenium2Library 常用关键字
使用Selenium2Library中的get title关键字可以获取当前页面的标题。其语法如下:
```
Get Title
```
使用示例:
```
*** Settings ***
Library Selenium2Library
*** Test Cases ***
Example
Open Browser https://www.baidu.com chrome
${title}= Get Title
Log ${title}
Close Browser
```
上述示例中,通过调用get title关键字获取百度首页的标题,并将标题打印出来。最后关闭浏览器。
阅读全文