小编lud*_*aex的帖子

Google Cloud Platform - 部署启动网络驱动程序的云函数

我正在 GCP 上定义一个云函数,用于在 Python 中抓取网站。

我从定义一个简单地打开 webdriver 的函数开始:

from selenium import webdriver

def launch_search(request):
    # Starting a webdriver
    driver = webdriver.Chrome()
    return 'Success'
Run Code Online (Sandbox Code Playgroud)

这个功能不起作用(Error: could not handle the request当我触发它时),可能是因为我的远程机器上没有安装 Chrome 驱动程序。所以:

  • 我该如何安装?
  • 或者我可以使用 Selenium抓取网页,而无需使用网络驱动程序打开页面吗?

python selenium automation web-scraping google-cloud-platform

6
推荐指数
1
解决办法
3372
查看次数