Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
from selenium import webdriver
|
2 |
from selenium.common.exceptions import WebDriverException
|
|
|
|
|
|
|
3 |
|
4 |
options = webdriver.ChromeOptions()
|
5 |
options.add_argument('--headless')
|
|
|
1 |
from selenium import webdriver
|
2 |
from selenium.common.exceptions import WebDriverException
|
3 |
+
from selenium.webdriver.common.by import By
|
4 |
+
from selenium.webdriver.support.ui import WebDriverWait
|
5 |
+
from selenium.webdriver.support import expected_conditions as EC
|
6 |
|
7 |
options = webdriver.ChromeOptions()
|
8 |
options.add_argument('--headless')
|