我正在编写一个lua脚本,该脚本要与scrapy + splash一起用于网站。我想编写一个输入文本然后单击一个按钮的脚本。我有以下代码:
function main(splash) local url = splash.args.url assert(splash:go(url)) assert(splash:wait(5)) local element = splash:select('.input_29SQWm') assert(element:send_text("Wall Street, New York")) assert(splash:send_keys("")) assert(splash:wait(5)) return { html = splash:html(), } end
现在,我正在使用启动API来测试我的代码是否正常运行。当我单击“渲染!”时 我收到以下消息:
{ "info": { "message": "Lua error: [string \"function main(splash)\r...\"]:7: attempt to index local 'element' (a nil value)", "type": "LUA_ERROR", "error": "attempt to index local 'element' (a nil value)", "source": "[string \"function main(splash)\r...\"]", "line_number": 7 }, "error": 400, "type": "ScriptError", "description": "Error happened while executing Lua script" }
因此,由于某些原因,当我尝试发送“纽约华尔街”时,元素仍然为零。我不明白为什么;如果我在Chrome控制台中输入以下内容:
$('.input_29SQWm')
我找到了想要的元素!
问:有人知道我在做什么错吗?
提前致谢!
如错误消息所告诉您,您尝试索引一个为nil的本地“元素”。该错误发生在第7行:assert(element:send_text("Wall Street, New York"))
那为什么呢nil
?在第6行中,我们为element
local element = splash:select('.input_29SQWm')
显然splash:select('.input_29SQWm')
回报nil
让我们看一下文档:
http://splash.readthedocs.io/en/stable/scripting-ref.html#splash-select
如果使用指定的选择器找不到该元素,则返回nil。如果您的选择器不是有效的CSS选择器,则会引发错误。
您的错误是没有处理select可能返回的情况nil
。您不能盲目索引可能为的值nil
。此外,在调用会引发错误的函数时,也应使用受保护的调用。
现在由您决定为什么select使用该选择器找不到元素。
在继续之前,建议您阅读有关Lua中错误处理的内容。