Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
433 views
in Technique[技术] by (71.8m points)

automation - Chrome Instances don't close after running Test Case in Protractor

When I run the test multiple times so Chrome instances do not close due to which PC utilization tends to 100%. So, I have to end Chrome instances manually. There might be some way to handle this?

Solution :

chromeOptions: {
  args: ["--disable-gpu"]
},

In Configuration file "Disable-gpu" is responsible to disable acceleration of chrome whenever there is some problem in rendering(in-case of failure).

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

By default protractor closes chrome instances after test execution unless the test fails in an irreconcilable way. So try to reset your protractor.conf.js settings back to default


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...