Closed ztshashi closed 2 years ago
@ztshashi could you please first check that afterStep\afterScenario executed when timeout error appears? e.g. add console.log("foo") to hooks and check console output.
@BorisOsipov Sorry for the delayed response, below is what I see when in afterStep:
| [0-0] ====In after step code=== //these are just text I added to locate in execution logs
| [0-0] failureScreenshotPath =<Location of screenshot on the container>/<screenshot-filename>.png
| error = Error: element ("<xpath of web element>") still not clickable after 20000ms
| [0-0] ====end of after step code=== //these are just text I added to locate in execution logs
I am running cucumber tests using webdriverio on docker setup, below is what the execution log for the test.
[chrome 87.0.4280.141 linux #0-0] Verify Application icon (article pages bottom) redirecting properly Hook
[chrome 87.0.4280.141 linux #0-0] function timed out, ensure the promise resolves within 1000 milliseconds
[chrome 87.0.4280.141 linux #0-0] Error: function timed out, ensure the promise resolves within 1000 milliseconds
[chrome 87.0.4280.141 linux #0-0] at Timeout._onTimeout (/app/node_modules/cucumber/lib/user_code_runner.js:76:18)
[chrome 87.0.4280.141 linux #0-0] at listOnTimeout (internal/timers.js:549:17)
[chrome 87.0.4280.141 linux #0-0] at processTimers (internal/timers.js:492:7)
I see the above when I run the tests with cucumberOps timeout as 5000, 10000 in wdio config. Hope this information is helpful.
@ztshashi 1) can you answer shortly: does afterStep execute when timeout error appears? It is hard to interpret logs output when you can't see the code :) l don't want any confusion or misunderstanding. 2) do you use wdio sync or async? seems sync.
@ztshashi i can't reproduce issue. see example https://github.com/BorisOsipov/wdio-issues-178 (replace token and rp url in wdio config)
feel free to reopen or add comment or better repo how to reproduce the issue
Also I assume if you use node 16 you use ASYNC mode. Please pay attention that async\await is missing in your code snippents.
@ztshashi
- can you answer shortly: does afterStep execute when timeout error appears? It is hard to interpret logs output when you can't see the code :) l don't want any confusion or misunderstanding. Response: With the logging added I see that afterStep is getting executed.
- do you use wdio sync or async? seems sync. Response: We are using the sync mode, I had also tried an execution by using async and await keyword for afterStep method but I still see instances of screenshots missing when function timeout happens.
Little bit info on the execution environment, I am running tests on a container and the WebdriverIO framework and WebdriverIO reporter is executing in the container, is there anyway i can log what service of reporter is called and the response for the same?
Hi Boris,
Good Morning
I have added below response to your queries on the Issue #178
Response: With the logging added I see that afterStep is getting executed.
Response: We are using the sync mode, I had also tried an execution by using async and await keyword for afterStep method but I still see instances of screenshots missing when function timeout happens.
Little bit info on the execution environment, I am running tests on a container and the WebdriverIO framework and WebdriverIO reporter is executing in the container, is there anyway i can log what service of reporter is called and the response for the same?
I was trying to reopen the ticket but couldn't do it. Need your help
Thanks,
Shashi
---- On Wed, 20 Apr 2022 00:26:38 +0530 Boris Osipov @.***> wrote ----
Also I assume if you use node 16 you use ASYNC mode. Please pay attention that async\await is missing in your code snippents.
— Reply to this email directly, https://github.com/BorisOsipov/wdio-reportportal-reporter/issues/178#issuecomment-1102981398, or https://github.com/notifications/unsubscribe-auth/AWWO7XRE6QDNIMB4VH5Z6T3VF36WNANCNFSM5TWH2ERA. You are receiving this because you were mentioned.
@ztshashi see https://github.com/BorisOsipov/wdio-reportportal-reporter/issues/178#issuecomment-1102979370
can you reproduce the issue by this repo?
@BorisOsipov sorry for the delayed response, I tried changing my afterStep for keywords "async" and "await" below is the same code I used to capture screenshot. I still see instances of missing screenshot.
browser.saveScreenshot(<variable having filepath>);
I will try this repo and share the results thanks
The problem
In Report portal screenshots are missing for some failed tests, others have screenshots attached. Below is a sample screenshot of the error.
Environment
Details
The execution log for which screenshot is not attached is below:
Sample Webdriver Hooks:
WebdriverIO Capabilities:
Sample wdio.conf.js to highlight the timeout referred in bug:
Code To Reproduce Issue [ Good To Have ]
Configure cucumberOpts timeout to a small number e.g. 1000 in wido.config.js and execute sample cucumber test using webdriverio. The timeout is kept low to cause the function timeout error for which the screenshot is not attached.