如何使用Selenium2Library在Robot Framework中使用RIDE在动态表中添加数据

时间:2018-06-15 10:11:39

标签: selenium robotframework

您好我是测试新手。我想通过在动态生成的表格中添加值来测试应用程序。请帮助我如何使用RIDE的机器人框架在表中添加值。

*Settings*

 Library Selenium2Library  

 ** Variables **

 ${AddWhiteCityCode}    Pune

 ** Test Cases **

 Click AddWhiteCity
  Click AddWhiteCity

 ** Keywords **

   Click AddWhiteCity

      Input Text    xpath=(//td[contains(@class,"addWhiteCity"')])[1]  ${AddWhiteCityCode}

我已经尝试了上面的语法但是给出了无效的Xpath语法错误 请帮忙..

谢谢

抱歉这是复制粘贴错误我的代码中没有单引号。

这是我的实际代码。

Input Text xpath=(//td[contains(@class,"addWhiteCity")])[1] ${AddWhiteCityCode}

1 个答案:

答案 0 :(得分:0)

你有单引号。这样,你得到无效的xpath错误。

xpath=(//td[contains(@class,"addWhiteCity")])[1]