const browser = require('../browser'); module.exports = async () => { await browser.start(); const url = await browser.goForward(); return { success: true, action: 'go_forward', url }; };