Add1E commited on
Commit
e7e93f9
·
verified ·
1 Parent(s): fe024a6

Update trend_crawl.py

Browse files
Files changed (1) hide show
  1. trend_crawl.py +6 -10
trend_crawl.py CHANGED
@@ -22,16 +22,12 @@ complete_starttime = time.time()
22
  #driver_path = os.path.join(script_dir, 'chromedriver')
23
 
24
  def setup_driver():
25
- chrome_options = Options()
26
- chrome_options.add_argument("--headless")
27
- chrome_options.add_argument("--no-sandbox")
28
- chrome_options.add_argument("--disable-dev-shm-usage")
29
-
30
- # Let webdriver_manager handle downloading and setting up Chromedriver
31
- service = ChromeService(ChromeDriverManager().install())
32
-
33
- driver = webdriver.Chrome(service=service, options=chrome_options)
34
- return driver
35
 
36
  def process_selenium_row(index, selenium_rows, driver):
37
  """Extract dynamic data using Selenium by clicking on the row."""
 
22
  #driver_path = os.path.join(script_dir, 'chromedriver')
23
 
24
  def setup_driver():
25
+ options = webdriver.ChromeOptions()
26
+ options.add_argument('--headless')
27
+ options.add_argument('--no-sandbox')
28
+ options.add_argument('--disable-dev-shm-usage')
29
+ wd = webdriver.Chrome(options=options)
30
+ return wd
 
 
 
 
31
 
32
  def process_selenium_row(index, selenium_rows, driver):
33
  """Extract dynamic data using Selenium by clicking on the row."""