#coding = utf-8
from selenium import webdriver
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--no-sandbox")
driver= webdriver.Chrome(chrome_options=chrome_options)

driver.get("https://www.baidu.com")

print(driver.page_source)

  

相关文章:

  • 2021-11-18
  • 2021-08-17
  • 2022-12-23
  • 2021-09-25
  • 2021-11-18
猜你喜欢
  • 2022-01-16
  • 2022-02-03
  • 2022-02-23
  • 2022-12-23
  • 2021-10-09
  • 2021-09-05
相关资源
相似解决方案