-
I am trying to run a headless mode execution using headless2 on SB. While the code executes, the execution is not headless. The chrome browser window pops up as in a non-headless mode execution. Code: class TestHeadlessMode: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To specify See The 23 Syntax Formats for structuring your |
Beta Was this translation helpful? Give feedback.
To specify
headless
, useheadless=True
in yourSB()
call. Eg.SB(headless=True)
.See The 23 Syntax Formats for structuring your
SeleniumBase
scripts properly.