Fix debug smoketest - frame contents can wrap but stay hidden - ensure that click lands on the correct frame

This commit is contained in:
Rob Lourens 2018-05-13 21:31:15 -07:00
parent 7f274127ff
commit 11bd4e4160

View file

@ -120,7 +120,7 @@ export class Debug extends Viewlet {
}
async focusStackFrame(name: string, message: string): Promise<any> {
await this.code.waitAndClick(SPECIFIC_STACK_FRAME(name));
await this.code.waitAndClick(SPECIFIC_STACK_FRAME(name), 0, 0);
await this.editors.waitForTab(name);
}