Untitled

Anonymous
plain_text
03/06/2023 2:22 AM
568 B
17
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...