前提・実現したいこと
スクレイピング対象ページはこちらです。
https://www.kaigokensaku.mhlw.go.jp/02/index.php?action_kouhyou_pref_search_list_list=true
splashを使って次へをクリックしページ遷移させたいのですが、
以下のエラーが出てしまい困っています。
Splashを使用した私のluaスクリプトとエラーメッセージは次のとおりです。
発生している問題・エラーメッセージ
{ "error": 400, "type": "ScriptError", "description": "Error happened while executing Lua script", "info": { "source": "[string \"function main(splash, args)\r...\"]", "line_number": 7, "error": "attempt to index local 'pd' (a nil value)", "type": "LUA_ERROR", "message": "Lua error: [string \"function main(splash, args)\r...\"]:7: attempt to index local 'pd' (a nil value)" } }
該当のソースコード
function main(splash, args) splash.private_mode_enabled = false assert(splash:go(args.url)) assert(splash:wait(0.5)) local pd = splash:select('nav:nth-child(1) li:nth-child(12) > a') pd:click() assert(splash:wait(2)) return { html = splash:html(), png = splash:png(), har = splash:har(), } end
試したこと
「次へ」ではなく、ページ中央の「地図を開く」を同様の方法でクリックしてみるとこちらは正しく遷移しました。
この結果から、「次へ」の要素になにか問題があるのではないかと考えています。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/07 10:07