Skip to content

Commit 569d34b

Browse files
rcourtmanclaude
andcommitted
feat: improve screenshot timing and update documentation images
- Add 2-second wait time to backup view screenshots for better data loading - Update all screenshot images with latest UI state - Remove obsolete backup script file - Ensure backup data is fully rendered before capturing screenshots 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c5ca5f4 commit 569d34b

10 files changed

+6
-144
lines changed

docs/images/01-dashboard.png

16 KB
Loading

docs/images/02-pbs-view.png

2.96 KB
Loading

docs/images/03-backups-view.png

-84 KB
Loading

docs/images/04-storage-view.png

27 KB
Loading

docs/images/05-line-graph-toggle.png

18.2 KB
Loading

docs/images/06-mobile-dashboard.png

1.97 KB
Loading

docs/images/07-mobile-pbs-view.png

6.54 KB
Loading
-114 KB
Loading

scripts/create-release.sh.backup

Lines changed: 0 additions & 144 deletions
This file was deleted.

scripts/take-screenshots.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ const sections = [
5757
// Wait for the first row in the backups table body
5858
await page.locator('#backups-overview-tbody tr').first().waitFor({ state: 'visible', timeout: 15000 });
5959
console.log(' Action: Backups table row visible');
60+
// Additional wait for backups data to fully load and render
61+
console.log(' Action: Waiting additional time for backups data to fully render');
62+
await page.waitForTimeout(2000);
6063
}
6164
},
6265

@@ -207,6 +210,9 @@ const mobileSections = [
207210
console.log(' Action: Waiting for backups table row to be visible (mobile)');
208211
await page.locator('#backups-overview-tbody tr').first().waitFor({ state: 'visible', timeout: 15000 });
209212
console.log(' Action: Backups table row visible (mobile)');
213+
// Additional wait for backups data to fully load and render
214+
console.log(' Action: Waiting additional time for backups data to fully render (mobile)');
215+
await page.waitForTimeout(2000);
210216
}
211217
}
212218
];

0 commit comments

Comments
 (0)