Skip to content

Commit

Permalink
✏️Update browser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kaixinol authored Apr 4, 2024
1 parent 1c83103 commit e2ae326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twitter_user_tweet_crawler/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def get_browser(headless: bool = False) -> WebDriver:
chrome_options.add_argument('--disable-remote-fonts')
chrome_options.add_argument('--disable-gpu')
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--window-size=1200x600"')
chrome_options.add_argument('--window-size=1200x600')
if headless:
chrome_options.add_argument('--headless')
driver = webdriver.Chrome(options=chrome_options)
Expand Down

0 comments on commit e2ae326

Please sign in to comment.