使用Selenium2Library捕获输入的标签文本

时间:2017-09-06 20:10:11

标签: jquery robotframework selenium2library

我正在尝试使用机器人框架捕获文本框的标签,并使用标签文本作为变量。有没有办法做到这一点?相关的html代码如下。 enter image description here

<div class="col-xs-6">

                    <div class="well" style="background-color:white;">

<div class="form-group">

    <label for="name_of_phenotype_entering">Please enter your name separated by comma (e.g Last, First)</label>

    <input class="form-control" id="name_of_phenotype_entering" name="name_of_phenotype_entering" type="text" value="">

</div>

感谢您的支持。

1 个答案:

答案 0 :(得分:2)

您可以使用以下XPATH找到<label>元素://label[@for="name_of_phenotype_entering"]

此时,您可以使用Get Text关键字检索变量中的元素文本,如下所示:

${label_text}=    Get Text    xpath=//label[@for="name_of_phenotype_entering"]