Skip to content

ci: Fixing the page actions spec #40328

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

Merged
merged 1 commit into from
Apr 22, 2025
Merged
Changes from all 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 @@ -15,7 +15,7 @@ import {
import PageList from "../../../../support/Pages/PageList";
import { EntityItems } from "../../../../support/Pages/AssertHelper";

describe("Check Page Actions Menu", {}, function () {
describe("Check Page Actions Menu", { tags: ["@tag.IDE"] }, function () {
it("1. Verify Page Actions when a page is selected", function () {
homePage.RenameApplication("PageActions");
PageList.AddNewPage("New blank page");
Expand All @@ -32,7 +32,7 @@ describe("Check Page Actions Menu", {}, function () {
PageList.ShowList();
agHelper.AssertAttribute(
locators._entityTestId("NewPage Copy"),
"data-disabled",
"data-subtle",
"true",
);
PageList.DeletePage("NewPage Copy");
Expand Down Expand Up @@ -93,7 +93,7 @@ describe("Check Page Actions Menu", {}, function () {
PageList.ShowList();
agHelper.AssertAttribute(
locators._entityTestId("Page2 Copy"),
"data-disabled",
"data-subtle",
"true",
);
PageList.DeletePage("Page2 Copy");
Expand All @@ -115,7 +115,7 @@ describe("Check Page Actions Menu", {}, function () {
PageList.ShowList();
agHelper.AssertAttribute(
locators._entityTestId("HomePage Copy"),
"data-disabled",
"data-subtle",
"true",
);
PageList.DeletePage("HomePage Copy");
Expand Down
Loading