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