DEV: Revert flaky specs fix attempts (#29472)

This commit is contained in:
Jan Cernik 2024-10-29 13:37:37 -03:00 committed by GitHub
parent 921e7b275b
commit e5ac69fd65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 15 deletions

View File

@ -5,7 +5,6 @@ module PageObjects
class Base
include Capybara::DSL
include RSpec::Matchers
include SystemHelpers
BODY_SELECTOR = ""

View File

@ -31,13 +31,8 @@ module PageObjects
click("#login-link")
end
def click_create_account(expect_success: true)
try_until_success(timeout: 5) do
click(".modal.create-account .btn-primary")
if expect_success
expect(page).to have_css(".modal.create-account .btn-primary.is-loading")
end
end
def click_create_account
click(".modal.create-account .btn-primary")
end
def has_password_input?

View File

@ -31,11 +31,8 @@ module PageObjects
click("#login-link")
end
def click_create_account(expect_success: true)
try_until_success(timeout: 5) do
click(".signup-fullpage .btn-primary")
expect(page).to have_css(".signup-fullpage .btn-primary.is-loading") if expect_success
end
def click_create_account
click(".signup-fullpage .btn-primary")
end
def has_password_input?

View File

@ -96,7 +96,7 @@ shared_examples "signup scenarios" do |signup_page_object, login_page_object|
.fill_code("pudding")
expect(signup_form).to have_valid_fields
signup_form.click_create_account(expect_success: false)
signup_form.click_create_account
expect(signup_form).to have_content(I18n.t("login.wrong_invite_code"))
expect(signup_form).to have_no_css(".account-created")
end
@ -131,7 +131,7 @@ shared_examples "signup scenarios" do |signup_page_object, login_page_object|
.fill_email("johndoe@example.com")
.fill_username("john")
.fill_password("supersecurepassword")
.click_create_account(expect_success: false)
.click_create_account
expect(signup_form).to have_content(I18n.t("js.user_fields.required", name: "Occupation"))
expect(signup_form).to have_no_css(".account-created")
end