この Web サイトをクロールしようとしています: http://www.aido.com/eshop/cl_2-c_189-p_185/stationery/pens.html
このページのすべての製品を取得できますが、ページの下部にある [もっと見る] リンクのリクエストを発行するにはどうすればよいですか?
今までの私のコードは次のとおりです。
rules = (
Rule(SgmlLinkExtractor(restrict_xpaths='//li[@class="normalLeft"]/div/a',unique=True)),
Rule(SgmlLinkExtractor(restrict_xpaths='//div[@id="topParentChilds"]/div/div[@class="clm2"]/a',unique=True)),
Rule(SgmlLinkExtractor(restrict_xpaths='//p[@class="proHead"]/a',unique=True)),
Rule(SgmlLinkExtractor(allow=('http://[^/]+/[^/]+/[^/]+/[^/]+$', ), deny=('/about-us/about-us/contact-us', './music.html', ) ,unique=True),callback='parse_item'),
)
何か助けはありますか?