RobotFramework:Keyword' Selenium2Library.Input Text'错误关键字'输入用户名'预期1个参数,得0

时间:2015-07-23 10:30:14

标签: selenium-ide robotframework

代码:

@RequestMapping(value = "/getWorkFlowValues.do")
@ResponseBody
public List<UpdateJiraBean> getWorkFlowValues(HttpServletRequest request) {
    String bothId = request.getParameter("bothId");
    List<UpdateJiraBean> updateJiraBean = userService.getWorkFlowValues(bothId);
    return updateJiraBean;
}

错误: - Input Username [Arguments] ${username} Input Text login_username_id ${username} 我可以知道为什么会收到这个错误吗?

2 个答案:

答案 0 :(得分:2)

传入self作为方法中的第一个参数。类似的东西:

def input_username(self, arg1):

答案 1 :(得分:0)

错误消息告诉您确切的问题所在:您的关键字Input Username只需要一个参数,但您调用它的地方只提供一个参数。