sahanind commited on
Commit
b09fe36
·
verified ·
1 Parent(s): 9e7c01a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def take_screenshot(url):
14
  wd = webdriver.Chrome(options=options)
15
  wd.set_window_size(1080, 720) # Adjust the window size here
16
  wd.get(url)
17
- wd.implicitly_wait(10)
18
  screenshot = wd.get_screenshot_as_png()
19
  except WebDriverException as e:
20
  return Image.new('RGB', (1, 1))
 
14
  wd = webdriver.Chrome(options=options)
15
  wd.set_window_size(1080, 720) # Adjust the window size here
16
  wd.get(url)
17
+ wd.implicitly_wait(30)
18
  screenshot = wd.get_screenshot_as_png()
19
  except WebDriverException as e:
20
  return Image.new('RGB', (1, 1))