When using start the debugger, how can I not start and end the browser every time
-
When using start the debugger, how can I not start and end the browser every time, I want to start the browser once and repeat the start debugger, thankyou
-
You cannot do this in the debugger, only in the runner.
-
This post is deleted!
-
@Ruri Runner also does not support, I want to click on the start, no longer start a new browser, but use the old browser
-
@mcming you could activate headless mode. it simulates a browser without interface. you can activate that in openbullet selenium settings
-
@mcming Runner does support it. If you don't put a BROWSERACTION Quit at the end, the next time the bot runs some data it will hook to the previously open browser instead of opening a new one. (Remember to also untick the setting that closes the browser every time, in other options selenium).
-
@Ruri Thank you for understanding the problem I expressed.,How to set hook the previously open browser
-
It does it automatically. Try to run 1 bot in non-headless mode, you will see when it finishes 1 data line it will proceed to the next one without closing / reopening the browser. You should add a block to clear cookies at the top of your config to make sure you have a fresh start. The BROWSERACTION Open will be only run once (the first time it opens) and then it will be skipped since there is already 1 browser open.