Skip to content

Commit

Permalink
fix: module export
Browse files Browse the repository at this point in the history
  • Loading branch information
vobu committed Feb 16, 2022
1 parent 3f08128 commit 673830c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client-side-js/fireEvent.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
async function fireEvent(webElement, eventName, oOptions) {
async function clientSide_fireEvent(webElement, eventName, oOptions) {
return await browser.executeAsync(
(webElement, eventName, oOptions, done) => {
window.bridge.waitForUI5(window.wdi5.waitForUI5Options).then(() => {
Expand Down Expand Up @@ -30,3 +30,7 @@ async function fireEvent(webElement, eventName, oOptions) {
oOptions
)
}

module.exports = {
clientSide_fireEvent
}

0 comments on commit 673830c

Please # to comment.