nesticot commited on
Commit
b124522
·
1 Parent(s): 382b884

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -67,6 +67,14 @@ import numpy as np
67
  # import matplotlib.pyplot as plt
68
  import matplotlib.colors
69
 
 
 
 
 
 
 
 
 
70
  #x,y,c = zip(*np.random.rand(30,3)*4-2)
71
 
72
  #norm=plt.Normalize(-2,2)
 
67
  # import matplotlib.pyplot as plt
68
  import matplotlib.colors
69
 
70
+ import undetected_chromedriver as uc
71
+ from selenium import webdriver
72
+
73
+ options = webdriver.ChromeOptions()
74
+ options.add_argument("start-maximized")
75
+ driver = uc.Chrome(options=options)
76
+ driver.get('https://www.naturalstattrick.com')
77
+
78
  #x,y,c = zip(*np.random.rand(30,3)*4-2)
79
 
80
  #norm=plt.Normalize(-2,2)