File size: 1,714 Bytes
494cdcf
 
493f5d8
 
 
 
973d2bc
 
ca11d6d
baf3cbb
e37298f
973d2bc
e37298f
973d2bc
 
5b38230
 
c712d59
5b38230
c712d59
 
 
493f5d8
c712d59
 
 
 
 
 
baf3cbb
 
 
c712d59
494cdcf
c712d59
 
 
 
 
 
 
 
494cdcf
c712d59
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
import time
import json

app = FastAPI()

@app.get("/")
def main():
    target_url = 'https://test5.container-z.art/test26'
    wait_time = 10
    header_list = '{"name": "John", "age": 30, "User-Agent": "New York"}'

    try:
        options = Options()
        options.add_argument('--headless')

        header_array = json.loads(header_list)
        for key, value in header_array.items():
            options.add_argument('--header="' + key + ': ' + value + '"')
            
        driver = webdriver.Chrome(options=options)
        driver.get(target_url)

        print(driver.page_source)
        
        time.sleep(wait_time)
    
        # 获取当前URL
        current_url = driver.current_url
        
        # 获取页面源代码
        page_source = driver.page_source
        
        # 获取cookie
        cookies = driver.get_cookies()
    
        # 是否有跳转过
        is_jump = (target_url != current_url)
        
        data = {
            "url": current_url,
            "page_source": page_source,
            "cookies": cookies,
            "is_jump": is_jump
        }
        
        driver.quit()
        return {"code": 200,"data":data}
    except error:
        return {"code": 500,"msg":error}

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