Skip to main content
Active reading [<https://en.wikipedia.org/wiki/Python_%28programming_language%29>]. In English, the subjective form of the singular first-person pronoun, "I", is capitalized. Removed meta information (this belongs in comments). Removed meta information (this belongs in comments).
Source Link
Peter Mortensen
  • 31.4k
  • 22
  • 110
  • 134

hi iI had the same problem with my chromedriver using pythonPython and options.add_argument("headless")options.add_argument("headless") did not work for me, but then iI realized how to fix it so iI bring it in the code below:

opt=webdriveropt = webdriver.ChromeOptions()
opt.arguments.append("headless")

i hope it works for you.

hi i had the same problem with my chromedriver using python and options.add_argument("headless") did not work for me but then i realized how to fix it so i bring it in code below

opt=webdriver.ChromeOptions()
opt.arguments.append("headless")

i hope it works for you.

I had the same problem with my chromedriver using Python and options.add_argument("headless") did not work for me, but then I realized how to fix it so I bring it in the code below:

opt = webdriver.ChromeOptions()
opt.arguments.append("headless")
Source Link

hi i had the same problem with my chromedriver using python and options.add_argument("headless") did not work for me but then i realized how to fix it so i bring it in code below

opt=webdriver.ChromeOptions()
opt.arguments.append("headless")

i hope it works for you.