|
@@ -56,10 +56,13 @@ while True:
|
|
|
#desired_capabilities=DesiredCapabilities.CHROME)
|
|
|
driver.set_window_size(1400,1000)
|
|
|
time.sleep(3)
|
|
|
- driver.get('https://www.sparkamplab.com/events/arvr-2021')
|
|
|
- scrolling(20)
|
|
|
- print('done scrolling')
|
|
|
- time.sleep(10)
|
|
|
+ try:
|
|
|
+ driver.get('https://www.sparkamplab.com/events/arvr-2021')
|
|
|
+ scrolling(20)
|
|
|
+ print('done scrolling')
|
|
|
+ time.sleep(10)
|
|
|
+ except:
|
|
|
+ print('excpet')
|
|
|
driver.quit()
|
|
|
|
|
|
|