mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 03:05:47 +00:00
test: playwright test correction
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
@@ -2,10 +2,10 @@
|
||||
if ! curl --output /dev/null --silent --head --fail http://localhost:31000
|
||||
then
|
||||
echo "Starting PlayWright Server"
|
||||
PWDEBUG=console pnpm dlx playwright run-server --port 31000 &
|
||||
PWDEBUG=console pnpm exec playwright run-server --port 31000 &
|
||||
|
||||
# Wait for server to start
|
||||
while ! curl --output /dev/null --silent --head --fail http://localhost:31000; do
|
||||
sleep 0.2
|
||||
done
|
||||
fi
|
||||
fi
|
||||
|
||||
@@ -30,7 +30,7 @@ test.describe('GroupBy CRUD Operations', () => {
|
||||
let context: any;
|
||||
|
||||
test.beforeEach(async ({ page }) => {
|
||||
context = await setup({ page, isEmptyProject: true });
|
||||
context = await setup({ page, isEmptyProject: false });
|
||||
dashboard = new DashboardPage(page, context.project);
|
||||
toolbar = dashboard.grid.toolbar;
|
||||
topbar = dashboard.grid.topbar;
|
||||
@@ -252,19 +252,17 @@ test.describe('GroupBy CRUD Operations', () => {
|
||||
test('Single GroupBy CRUD Operations - Links', async ({ page }) => {
|
||||
await dashboard.treeView.openTable({ title: 'Film' });
|
||||
|
||||
await toolbar.sort.add({ title: 'Actors', ascending: true, locallySaved: false });
|
||||
|
||||
await toolbar.clickGroupBy();
|
||||
|
||||
await toolbar.groupBy.add({ title: 'Actors', ascending: false, locallySaved: false });
|
||||
|
||||
await dashboard.grid.groupPage.openGroup({ indexMap: [0] });
|
||||
await dashboard.grid.groupPage.openGroup({ indexMap: [2] });
|
||||
|
||||
await dashboard.grid.groupPage.addNewRow({
|
||||
indexMap: [0],
|
||||
index: 10,
|
||||
columnHeader: 'Item',
|
||||
value: 'Aaaaaaaaaaaaaaaaaaaa',
|
||||
await dashboard.grid.groupPage.validateFirstRow({
|
||||
indexMap: [2],
|
||||
rowIndex: 0,
|
||||
columnHeader: 'Title',
|
||||
value: 'ARABIA DOGMA',
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user