mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
7 lines
253 B
TypeScript
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
|
|
},
|
|
};
|