Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Selenium/chrome console
#1
Hi guys,

I am running selenium webdriver with headless Chrome (my basic code below) to scrape multiple web pages.

Does anybody know the correct code to hide the chrome.exe console?

#set up selenium webdriver (headless)
        option = webdriver.ChromeOptions()
        #option.add_argument("--window-size=1920,1080")
        #option.add_argument("--start-maximized")
        option.add_argument("--headless")
        browser = webdriver.Chrome('C:\\Users\\chromedriver.exe',options = option)
        browser.get(url)
Reply
#2
search for headless here: https://python-forum.io/Thread-Web-scraping-part-2
Reply
#3
As far as I can see this code does not have an option to hide the chrome.exe command console. The headless option prevents the web page from physically opening but the command console still opens. This is the one I want to hide as well.
Reply
#4
I guess you mean the DevTools listening on message?
Look at this Thread.
Reply
#5
Yes the Dev Tools window. I was going to put an image up but don't know how to do that here!! When I click the image icon it asks me for a URL????.

I am also using Threadpool processing so I get about 12 of these windows all open on my screen!! They don't serve any purpose because the text is written too fast to read and if there is an error I can see what that is in Python shell (I am using IDLE IDE at the moment).

I did implement suggested changes in service.py but it didn't like the syntax creationflags=CREATE_NO_WINDOW

Thanks for pointing out the thread though.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Selenium- Can't access "Chrome is being controlled by automated test software" Lahva 0 1,071 Sep-19-2024, 11:37 AM
Last Post: Lahva
  How do I iterate over an array and perform actions using selenium chrome webdriver? master 0 3,160 Sep-14-2020, 05:28 AM
Last Post: master
  Chrome instead of IE Friend 1 2,748 Feb-09-2020, 07:31 AM
Last Post: Larz60+
  Cannot open Chrome gahhon 3 4,749 Jan-26-2019, 04:56 AM
Last Post: snippsat
  selenium - chrome crashes when chrome is running. RvBVakama 4 17,411 Dec-16-2018, 06:32 PM
Last Post: metulburr
  Alternatives to Chrome WebDriver? chisox721 4 9,056 Apr-23-2018, 06:24 PM
Last Post: chisox721
  Error in Selenium: CRITICAL:root:Selenium module is not installed...Exiting program. AcszE 1 4,428 Nov-03-2017, 08:41 PM
Last Post: metulburr
  Selenium chrome driver not returning solution Prince_Bhatia 0 4,209 Jul-06-2017, 06:40 AM
Last Post: Prince_Bhatia

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020