TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Python script to automate filling out Google form using Selenium

10 点作者 vedipen超过 6 年前

4 条评论

adpirz超过 6 年前
Looks good! One of the best reasons to learn python: automating the boring stuff. If you like to write these scripts, definitely check out this book (free online): <a href="https:&#x2F;&#x2F;automatetheboringstuff.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;automatetheboringstuff.com&#x2F;</a><p>With all that said, I&#x27;m baffled as to why this automation script for a particular Google form --a protected one, no less -- is on the front page...
评论 #18898632 未加载
dymk超过 6 年前
Linking <a href="https:&#x2F;&#x2F;www.seleniumhq.org&#x2F;docs&#x2F;03_webdriver.jsp" rel="nofollow">https:&#x2F;&#x2F;www.seleniumhq.org&#x2F;docs&#x2F;03_webdriver.jsp</a> would be more worthwhile
amanzi超过 6 年前
Good work. As someone who has dabbled a bit in Python scraping and forms, I can appreciate the amount of work that must have gone into this.
dplgk超过 6 年前
I&#x27;ve found selenium to be very heavy and unreliable but perhaps it&#x27;s needed to deal with whatever barrage of cookies and verification Google implements? Did you find it easy to use? I use either mechanize (works like a headless browser, handles cookies, forms, etc) or beautiful soup for scraping.