You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
no longer works. This causes issues when calling a function from a template like so: This is an AppiumScenario Example export const mainPageClickThrough = () => { return async (context: iAssertionContext) => { .... } }
This makes it impossible for me to call this function in a template next like this: 'Main Page click through': mainPageClickThrough()
This means to use the function I have to call it like: 'Main Page click through': async (context) => { await mainPageClickThrough(context) }
This bug is breaking some current tests.
The text was updated successfully, but these errors were encountered:
import { iAssertionContext } from "flagpole";
no longer works. This causes issues when calling a function from a template like so: This is an AppiumScenario Example
export const mainPageClickThrough = () => { return async (context: iAssertionContext) => { .... } }
This makes it impossible for me to call this function in a template next like this:
'Main Page click through': mainPageClickThrough()
This means to use the function I have to call it like:
'Main Page click through': async (context) => { await mainPageClickThrough(context) }
This bug is breaking some current tests.
The text was updated successfully, but these errors were encountered: