黄瓜方案大纲只运行了一次,即使它有3个方案

问题描述 投票:0回答:1
  • 。feature文件:功能:测试登录功能

    方案:用户应该能够使用正确的用户名和密码登录给定用户在登录页面上当用户输入正确的用户名和密码时然后用户得到确认

    方案概要:用户应使用以下证书登录给定用户在登录页面上当用户输入正确的电子邮件时用户输入正确的密码然后用户输入“登录”按钮然后用户得到确认

    示例:|用户名|密码| [email protected] |测试@ 1234 || [email protected] | trpass || [email protected] | rwpass |

java selenium cucumber gherkin
1个回答
0
投票

请按照以下步骤更新您的功能文件

When user enters the correct Email "<UserName>" 
And user enters the correct Password "<Password>"

也希望您已经处理了步骤def:

@And("^user enters the correct\"(.*)\"$")
 public void enterUsername(String username) throws Throwable
{
}

@And("^user enters the correct \"(.*)\"$")
public void enterUsername(String password) throws Throwable
{
}
© www.soinside.com 2019 - 2024. All rights reserved.