super-productivity/e2e/commands/triggerSync.ts
2025-07-18 13:53:05 +02:00

7 lines
253 B
TypeScript

import { NBrowser } from '../n-browser-interface';
module.exports = {
command: function triggerSync(this: NBrowser) {
return this.waitForElementVisible('.sync-btn', 3000).click('.sync-btn').pause(1000); // Allow time for sync to complete
},
};