【VBA:Selenium】htmlから情報を抽出したい(InvalidSelectorError)

実現したいこと

・VBAのSelenium(Webdriver)を使用し、下記のhtmlから商品名・価格・アドレスの情報を抽出~Excelに貼付をしたいです。
(ブラウザはEdgeになります。)

前提

・商品名、アドレス部分のコーディングは出来ました。
価格部分のみ上手く取得が出来ない状況です。

 大変お手数ですが、解決策をご教示を頂けますと幸いです。

発生している問題・エラーメッセージ

・実行時エラー32
InvalidSelectorError compound class name permitted
→div class、もしくはspan classの情報を抽出出来ない形です。
contentの "10267"、もしくは ¥ 10,267 を出来れば良いと考えています。

試したこと

'■03_情報の取得_01_商品名→OK Dim name ' As WebElements Set name = driver.FindElementsByClass("image-container") ws.Range("D" & n).Value = name(1).FindElementByTag("img").Attribute("title") '■03_情報の取得_02_価格→NG Dim price ' As WebElements Set price = driver.FindElementsByClass("price bx-product-tile__price") ws.Range("E" & n).Value = price(1).FindElementByTag("span").Attribute("content") '■03_情報の取得_03_サイトアドレス→OK Dim site ' As WebElements Set site = driver.FindElementsByClass("image-container") ws.Range("F" & n).Value = site(1).FindElementByTag("a").Attribute("href")

該当のソースコード

<a href="/goods/960012.html" class="tx-product-tile-a-on " data-item-sku-group="960012" data-item-list-name="キーワード検索結果一覧_9786-33703"> <img width="400" height="400" loading="lazy" class="tile-image bx-loading-background w-100 h-auto" src="https://belluna.jp/dw/image/v2/BHHF_PRD/on/demandware.static/-/Sites-belluna_catalog-ms/default/dw521714c0/images/PIMDW/ph/O/1008826469/DLARGE.JPG?sw=198" alt="「カシオ ソーラー電波時計(腕時計)」" title="カシオ ソーラー電波時計" itemprop="image"> </a> <div class="bx-ranking mt-0"> <div class="bx-bg- bx-ranking__number-wrapper"></div> </div> <div class="bx-infomation mt-0"> </div> <div class="image-container__label"> </div> <a class="quickview bx-product-tile__label" href="/on/demandware.store/Sites-belluna-Site/ja_JP/Product-ShowQuickView?pid=960012" title="クイックビュー" data-skugroup="960012" data-quickviewitemlistname="キーワード検索結果一覧_9786-33703"> <span class="d-flex flex-column align-items-center justify-content-end bx-bg-bel-white rounded-circle bx-font-size-px-10 bx-text-bel-black3 border-bottom-0 bx-outline-bel-gray3"> <span>6</span> Colors <i class="fas fa-chevron-down"></i> </span> </a>
<div class="tile-body"> <div class="bx-text-bel-gray5 bx-font-size-px-10 bx-mb-px-1 bx-height-px-15"></div> <div class="pdp-link text-truncate bx-font-size-px-12 font-weight-normal"> <a class="link tx-product-tile-a-on " href="/goods/960012.html" data-item-sku-group="960012" data-item-list-name="キーワード検索結果一覧_9786-33703" >カシオ ソーラー電波時計</a>
<div class="price bx-product-tile__price"> <span> <span class="sales bx-product-tile__sales font-weight-normal bx-text-bel-black3"> <span class="value bx-font-size-px-12" content="10267"> &yen; 10,267 </span> <span class="mb-1 bx-font-size-px-8 ">&nbsp;(税込)</span> </span>

コメントを投稿

0 コメント