我使用Selenium WebDriver开发了一个用于打开某些页面的应用程序。它可以在本地完美运行,但我也需要在客户端启动浏览器。
我使用Apache2
下的Ubuntu 18
部署了该应用程序。
driver = webdriver.Chrome(executable_path="chromedriver",chrome_options=chromeOptions)
# Specify the URL.
url = "www.google.com"
driver.get(url)