-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
16 lines (13 loc) · 912 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export {default as openBrowser} from './actions/open-browser/index.js'
export {default as closeBrowser} from './actions/close-browser/index.js'
export {default as getTabs} from './actions/get-tabs/index.js'
export {default as openTab} from './actions/open-tab/index.js'
export {default as closeTab} from './actions/close-tab/index.js'
export {default as resizeTab} from './actions/resize-tab/index.js'
export {default as navigate} from './actions/navigate/index.js'
export {default as waitForNavigation} from './actions/wait-for-navigation/index.js'
export {default as evalInTab} from './actions/eval-in-tab/index.js'
export {default as findElement} from './actions/find-element/index.js'
export {default as clickElement} from './actions/click-element/index.js'
export {default as fillInElement} from './actions/fill-in-element/index.js'
export {default as selectFiles} from './actions/select-files/index.js'