From 3beb25915da65ac3584cfa1f20ac051188bfa14a Mon Sep 17 00:00:00 2001 From: JG Date: Tue, 31 May 2022 16:29:12 +0100 Subject: [PATCH] pressing button --- spec/features/organisation_spec.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spec/features/organisation_spec.rb b/spec/features/organisation_spec.rb index 3e10d3be2..f745f3095 100644 --- a/spec/features/organisation_spec.rb +++ b/spec/features/organisation_spec.rb @@ -194,6 +194,14 @@ RSpec.describe "User Features" do expect(page).to have_link("Logs") expect(page).to have_link("About this organisation") end + + context "when I click on Invite user" do + before do + click_link(text: "Invite user") + end + it "pre-fills the organisation details dropdown with specific organisation" do + end + end end end end