使用 Selenium2Library 捕获输入的标签文本
Capture input's label text with Selenium2Library
我正在尝试使用机器人框架捕获文本框的标签并将标签文本用作变量。有什么办法吗?相关的html代码如下。
<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>
感谢您的支持。
您可以使用以下 XPATH 来定位您的 <label>
元素://label[@for="name_of_phenotype_entering"]
此时您可以使用Get Text关键字来检索变量中元素的文本,如下所示:
${label_text}= Get Text xpath=//label[@for="name_of_phenotype_entering"]
我正在尝试使用机器人框架捕获文本框的标签并将标签文本用作变量。有什么办法吗?相关的html代码如下。
<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>
感谢您的支持。
您可以使用以下 XPATH 来定位您的 <label>
元素://label[@for="name_of_phenotype_entering"]
此时您可以使用Get Text关键字来检索变量中元素的文本,如下所示:
${label_text}= Get Text xpath=//label[@for="name_of_phenotype_entering"]