Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用mechanize自动与网站交互,一切正常。我正在登录网站(使用用户名和密码),浏览页面和所有内容。
问题是我想模拟对不是“a”标签(它的 div)的项目的点击。任何想法如何解决这个问题?
你不能使用机械化来做到这一点。您需要使用 Watir 或 Selenium。
但是,您可能会做的是查看 div 的 onClick 功能,并弄清楚它在做什么。如果是执行 GET 或 POST,您在 Mechanize 中确实有此选项,并且可以通过这种方式模拟点击。
(当然,如果您提供代码示例,这将更容易解释)