Need help scraping data after "Click Show"

I need help extracting phone number from this website and somehow I can't do it.
There's two way place to extract the data:

  1. is the phone number behind "Show Contact Number" in seller says
  2. is at the right box below "Chat with Seller"

Both need to clicked before the number is shown.

Url: https://www.mudah.my/PRO+renovation+plumber+service+plumbing-65962312.htm
Sitemap:
a href="#" class="" onclick="return false" style="text-decoration: none; cursor: default; color: rgb(64, 64, 65);">0167780969

div class="contact-phone-row-show trackable" gravity-conversion-tel="true" data-event_type="view|link" data-event_name="Call|Call" data-xtn2="93|93" data-click_type="|A" data-page_name="Call&x17=1&x3=1020&x1=14&x6=70962060&x10=1&x4=3&x18=2|Call::Vehicles::Cars::Normal" data-ad_reply_type="4"
div class="col-xs-12 contact-phone-left-full"> div class="contact-phone-icon sprite_view_icn_CnPhone contact-phone-icon-full" div div id="number-space" div class="contact-phone-prefix"> div div class="contact-phone-peel sprite_view_icn_contact_peel1" style="display: none;">div div div class="col-xs-8 contact-phone-right" style="display: none;" div class="contact-phone-text">Click to View Phone Number

Hi Jamiez,

you need to add an Element Click selector, choose "Show phone number" for click (bottom one), then, once phone number is shown, pick it for the selector (upper one). Then add a text selector inside click selector, and pick shown phone number.

Your sitemap:
{"_id":"mudah","startUrl":["https://www.mudah.my/PRO+renovation+plumber+service+plumbing-65962312.htm"],"selectors":[{"id":"click_to_show_number","type":"SelectorElementClick","selector":"p.moreless > a","parentSelectors":["_root"],"multiple":false,"delay":"1000","clickElementSelector":"a.desc_phone","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"phone","type":"SelectorText","selector":"_parent_","parentSelectors":["click_to_show_number"],"multiple":false,"regex":"","delay":0}]}

1 Like