How to stop automatically closing browser when writing protractor test cases

后端 未结 9 1750
面向向阳花
面向向阳花 2021-02-07 12:43

I am new to writing test cases using protractor for non angular application. I wrote a sample test case.Here the browser closes automatically after running test case.How can I p

9条回答
  •  无人共我
    2021-02-07 13:02

    I was also struggling with a similar issue where i had a test case flow where we were interacting with multiple application and when using Protractor the browser was closing after executing one conf.js file. Now when I looked into the previous response it was like adding delay which depends on how quick your next action i performed or it was hit or miss case. Even if we think from debugging perspective most of the user would be performing overnight runs and they would want to have browser active for couple of hours before they analyze the issue. So I started looking into the protractor base code and came across a generic solution which can circumvent this issue, independent of any browser. Currently the solution is specific to requirement that browser should not close after one conf.js file is executed, then could be improved if someone could add a config parameter asking the user whether they want to close the browser after their run.

    The browser could be reused for future conf.js file run by using tag --seleniumSessionId in command line.

    Solution:

    • Go to ..\AppData\Roaming\npm\node_modules\protractor\built where your protractor is installed.
    • Open driverProvider.js file and go to function quitDriver
    • Replace return driver.quit() by return 0

    As far as my current usage there seems to be no side effect of the code change, will update if I came across any other issue due to this change. Snapshot of code snippet below.

    Thanks Gleeson

    Snapshot of code snippet: Snapshot of code snippet

提交回复
热议问题