Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f730f66
test: v4 project builder
voicis Sep 29, 2025
279ebd9
Merge branch 'main' into 'feat/adp-test/fe-v4'
Jimmy-Joseph19 Oct 16, 2025
aea70dd
fe-v4 adp tests
Jimmy-Joseph19 Oct 21, 2025
a93b0cf
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 21, 2025
790d78e
Merge remote-tracking branch 'origin/main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 21, 2025
d22bc18
wip: generate manual test
Jimmy-Joseph19 Oct 22, 2025
6cda735
merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 22, 2025
8319b99
wip: fix issues
Jimmy-Joseph19 Oct 22, 2025
6794a91
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 22, 2025
8491a32
restrict version
Jimmy-Joseph19 Oct 22, 2025
16f7e82
remove timeout
Jimmy-Joseph19 Oct 22, 2025
1b32b70
remove unused code
Jimmy-Joseph19 Oct 22, 2025
4576e8c
fix: lint
Jimmy-Joseph19 Oct 27, 2025
4506f14
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 27, 2025
6ce5ce4
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 28, 2025
ec4195b
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 29, 2025
1bc371e
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 29, 2025
f1eb729
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Oct 31, 2025
0d78fc0
Merge remote-tracking branch 'origin/main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 3, 2025
53fc465
fix: todos
Jimmy-Joseph19 Nov 3, 2025
b68ead1
Linting auto fix commit
github-actions[bot] Nov 3, 2025
c69f7f9
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 5, 2025
07442bd
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 5, 2025
7d3da47
fix: feedback
Jimmy-Joseph19 Nov 5, 2025
51da763
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 5, 2025
1fd7ad3
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 6, 2025
b9ae90b
add missing tests
Jimmy-Joseph19 Nov 7, 2025
e5456fe
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 7, 2025
ee8e4aa
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 7, 2025
a44c26f
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 10, 2025
b929094
Merge branch 'main' into feat/adp-tests/fe-v4
Jimmy-Joseph19 Nov 10, 2025
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 @@ -101,22 +101,29 @@ export default class ManualTestCaseReporter implements Reporter {
/^browser\./,
/^browserContext\./,
/^Expect \"toBeVisible\"$/,
/^Evaluate$/,
/^Expect \"toBe\"$/,
/^Expect \"toEqual\"$/,
/^Expect \"toContain\"$/,
/^Expect \"toBeAttached\"$/,
/^Expect\.poll\.toEqual$/,
/^Expect \"toBeEnabled\"$/,
/^Expect \"toBeDisabled\"$/,
/^Expect \"toHaveAttribute\"$/,
/^Expect \"poll toEqual\"$/,
/^locator\.textContent/,
/^locator\.count/,
/^Click on in Application Preview$/,
/^Query count getByTestId\(\'saved-changes-stack\'\)/,
/^Click locator\(/,
/^Query count locator/,
/^Verifying Changes.../,
/^page\.goto\(/,
/^Create context$/,
/^Create page$/,
/^Navigate to "\/adaptation-editor\.html\?fiori-tools-rta-mode=true"$/,
/locator\('iframe\[title="Application Preview"\]'\)/
/locator\('iframe\[title="Application Preview"\]'\)/,
/^Wait for selector getByText/
];

const shouldSkip = skipPatterns.some((pattern) => pattern.test(step.title));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
1. Check `UIAdaptation` mode in the toolbar is enabled
2. Click `Navigation` button in the toolBar
3. Click on value help button of `Date Property` filter
4. Check semantic date `Yesterday` visible in filter
4. Check semantic date range options have `Yesterday` for `DateProperty` filter
5. Click `UI Adaptation` button in the toolBar
6. Click `Disable Semantic Date Range in Filter Bar` button in the Quick Actions Panel
7. Click `Save and Reload` button in the toolBar
Expand All @@ -269,10 +269,11 @@

9. Click `Navigation` button in the toolBar
10. Click on value help button of `Date Property` filter
11. Click `UI Adaptation` button in the toolBar
12. Click `Enable Semantic Date Range in Filter Bar` button in the Quick Actions Panel
13. Click `Save and Reload` button in the toolBar
14. Verify changes:
11. Check that the calendar popover is displayed
12. Click `UI Adaptation` button in the toolBar
13. Click `Enable Semantic Date Range in Filter Bar` button in the Quick Actions Panel
14. Click `Save and Reload` button in the toolBar
15. Verify changes:

**Change(s)**

Expand Down Expand Up @@ -327,6 +328,7 @@
```


6. Check `Enable Variant Management in Tables and Charts` quick action is disabled and tooltip is `This option has been disabled because variant management is already enabled for tables and charts`

---

Expand Down
Loading