Is this an iframe issue?

Hello

I am going nuts trying to extract some data from what I understand it is an iframe. In the following link ther is a sample:

Url: https://www.milanuncios.com/otras-empleo/cuidadora-o-camarera-461513631.htm

there is big greem button that read "Llamar". When you click it, an iframe opens, showing a phone number, which I want to scrape.

However, I have not been able to do it despite trying several things. As of now, my sitemap does not include any iframe item, since I am sure I am using it wrong. I just stopped at the "click_contact", which just opens the frame, and a text selector under it, but with no result. How should I do it?

Thanks in advance for the support!

Sitemap:
{"_id":"milanuncios_trabajos_3","startUrl":["https://www.milanuncios.com/otras-empleo/?demanda=s&pagina=[1-2]"],"selectors":[{"clickElementSelector":"button.ma-AdContactCallButton","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"click_contact","multiple":false,"parentSelectors":["click_listings"],"selector":"button.ma-AdContactCallButton","type":"SelectorElementClick"},{"delay":0,"id":"click_listings","multiple":true,"parentSelectors":["_root"],"selector":"a.ma-AdCardListingV2-TitleLink","type":"SelectorLink"},{"delay":0,"id":"nombre","multiple":false,"parentSelectors":["click_listings"],"regex":"","selector":"h2.ma-UserOverviewProfileName","type":"SelectorText"},{"delay":0,"id":"titulo","multiple":false,"parentSelectors":["click_listings"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"id":"numero","multiple":false,"parentSelectors":["click_contact"],"regex":"","selector":"a.ma-ModalContactCallPhoneLink-phone","type":"SelectorText"},{"delay":2000,"id":"scroll","multiple":true,"parentSelectors":["_root"],"selector":"div.ma-LayoutBasic-content","type":"SelectorElementScroll"}]}

@Pablo_Gonzalez Hi, it appears that you should be able to extract the desired data by using an 'Element click' in a combination with the 'Text' selector.

Example:

{"_id":"milanuncios_trabajos_3","startUrl":["https://www.milanuncios.com/otras-empleo/cuidadora-o-camarera-461513631.htm"],"selectors":[{"clickElementSelector":".ma-ContentAdDetail-contactButtons button.ma-AdContactCallButton","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1200,"discardInitialElements":"do-not-discard","id":"phone-click","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"id":"phone","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"a.ma-ModalContactCallPhoneLink-phone","type":"SelectorText"}]}

I am not sure how I missed this... :thinking: Thank you!