我正在 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 驱动程序。所以:
python selenium automation web-scraping google-cloud-platform