【发布时间】:2016-12-01 17:23:06
【问题描述】:
例如,要查看 Google 表格文档,我可以使用 gspread:
import gspread
gc = gspread.login("your login", "your password")
wks = gc.open("document name").worksheet("sheet name")
cellValue = wks.acell("A1").value
print "Cell 'A1' has a value of %s" % cellValue
有没有一种方法可以访问 Google 表格并尝试使用 Python 和 Selenium 在自动化测试中对其进行编辑?
【问题讨论】:
-
请澄清“访问谷歌表格并尝试使用 python 和 selenium 在自动化测试中对其进行编辑”
标签: python selenium google-sheets