I'm trying to set an attachments with absolute path to a screenshot in case test failed in AfterEach hook.
this.test.attachments = [absolutePath] works great from test. But when I moved that line to AfterEach hook it stop working.
I've tried to use those and attachment wasn't added:
this.test.attachments = [absolutePath]; this.currentTest.attachments = [absolutePath]; this.currentTest.ctx.attachments = [absolutePath]; this.test.ctx.attachments = [absolutePath];
Is there any way to attach a screenshot path from AfterEach hook?
I'm trying to set an attachments with absolute path to a screenshot in case test failed in AfterEach hook.
this.test.attachments = [absolutePath]
works great from test. But when I moved that line to AfterEach hook it stop working. I've tried to use those and attachment wasn't added:this.test.attachments = [absolutePath]; this.currentTest.attachments = [absolutePath]; this.currentTest.ctx.attachments = [absolutePath]; this.test.ctx.attachments = [absolutePath];
Is there any way to attach a screenshot path from AfterEach hook?