我试图让它每次访问 FootLocker/FootAction 等../ 运动鞋页面时,它会自动选择我的鞋码,将其添加到购物车,然后为我结账。每次我尝试运行脚本时,我都会收到此错误
错误:脚本“My Fancy New Userscript”的执行失败!硒未定义
这是我的脚本
// ==UserScript==
// @name FOOTLOCKER.ACTION
// @namespace http://*/*
// @version 0.1
// @description enter something useful
// @match http://*/*
// @copyright 2012+, You
// ==/UserScript==
selenium.select("class=selectBox-label", "10"); // this selects size 10
selenium.click("class=cmConversionEventSizeSelection");
selenium.waitForElement("class=addToCartButton");
selenium.click("class=addToCartButton");
selenium.waitForElement("class=checkout");
selenium.click("class=checkout")
这是目标页面