File size: 958 Bytes
494cdcf
 
493f5d8
 
 
 
973d2bc
 
e37298f
973d2bc
e37298f
973d2bc
 
494cdcf
ed7920e
494cdcf
baa68d1
493f5d8
 
494cdcf
 
 
 
 
 
 
 
973d2bc
e37298f
973d2bc
 
 
e37298f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import WebDriverException, TimeoutException
from fastapi import FastAPI, Request
import uvicorn

app = FastAPI()

@app.get("/")
def main():
    options = Options()
    options.add_argument('--headless')
    driver = webdriver.Chrome(options=options)
    driver.get('https://test5.container-z.art/test26')

    WebDriverWait(driver, 5).until(EC.presence_of_element_located((By.TAG_NAME, "body")))
    
    cookies = driver.get_cookies()
    print(cookies)
    
    current_url = driver.current_url
    print(current_url)
    
    driver.quit()
    return {"code": 200,"msg":"Success"}

if __name__ == '__main__':
    uvicorn.run(app='app:app', host="0.0.0.0", port=7860)