gpt4 book ai didi

grails - Geb + cucumber : Restart Browser Between Scenarios

转载 作者:行者123 更新时间:2023-12-02 14:25:46 26 4
gpt4 key购买 nike

我将 Grails 2.1.1 与 Cucumber 和 Geb 一起使用。我有一个包含 2 个场景的 Auth.feature。一种用于成功验证,另一种用于测试无效凭据。

我认为我必须解决这个问题的方法是让 geb 从第一个场景中注销用户,然后它才能运行第二个场景。这是因为我的 Given 步骤检查以确保我在登录页面。场景 1 执行后,我在仪表板页面上。

我想我的问题是(a)在完成场景之前使用 geb 注销有效用户还是(b)有没有办法让它在场景之间重新开始?

现在,我已经实现了 (a) 并且它工作得很好。只是想知道这是否是最佳的。

这是我的功能

Feature: login to system
As a user of the system
I want to log in to the application
so that I can use it

Scenario: login
Given I access the login page
When I enter valid credentials
Then I see the dashboard

Scenario: auth fail
Given I access the login page
When I enter invalid credentials
Then I see appropriate error messages

这是我的 Geb 步骤
Given(~'^I access the login page$') {->
to LoginPage
at LoginPage
}

When(~'^I enter valid credentials$') {
page.add('user_10001@test.com', '10001')
}

Then(~'^I see the dashboard$') {->
at DashboardPage
}

Then(~'^I see an error message on the login page$') { ->
at LoginPage
}

When(~'^I enter invalid credentials$') { ->
page.add('baduser', 'paddpassword')
}

Then(~'^I see appropriate error messages$') { ->
at LoginPage
// check for error message
}

最佳答案

根据我所做的更多研究,看起来有几种方法可以处理这个问题:

  • 就像我已经在做一样,通过在场景结束时注销(或者你可以在开始时做
  • 让注销成为自己的场景
  • 在 env.groovy 钩子(Hook)之前,添加 to LogoutPage
  • 使用背景注销
  • 关于grails - Geb + cucumber : Restart Browser Between Scenarios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14096907/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com