Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Div/appeals 54935 #23666

Merged
merged 3 commits into from
Dec 3, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,20 @@
click_button("View task instructions")
expect(all(".task-instructions")[1].text).to include("Change task type instructions")
end

it "Verfify #{task_action[:name]} task with Return to inbound ops action dropdown" do
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change the text from Verfify to Verify.

visit "/queue/correspondence/#{@correspondence.uuid}"
dropdowns = page.all(".toggleButton-plus-or-minus")
dropdowns.last.click
click_dropdown(prompt: "Select an action", text: "Return to Inbound Ops")
expect(page).to have_content("Return to Inbound Ops")
expect(page).to have_content("This correspondence will be returned " \
"to the Inbound Operations Team. Please select a reason for return.")
click_button("Return")
dropdowns = page.all(".toggleButton-plus-or-minus")
dropdowns.last.click
expect(page).to have_content("You have successfully returned the correspondence to Inbound Operations team.")
end
end
end
end
Expand Down
Loading