Untitled
unknown
plain_text
2 years ago
425 B
6
Indexable
from selenium import webdriver # Đường dẫn đến Chrome Portable chrome_path = 'path/to/chrome/portable' # Khởi tạo trình điều khiển Chrome chrome_options = webdriver.ChromeOptions() chrome_options.binary_location = chrome_path driver = webdriver.Chrome(chrome_options=chrome_options) # Tải trang web url = 'https://www.google.com' driver.get(url) # Đóng trình duyệt driver.quit()
Editor is loading...