How to Webscrap in website like this?

Hello, I'm newbie in webscraping.

Already try some way to get webscrapped but it didn't work.

Can anyone help me? Thanks

Url: Cek Produk - Badan Pengawas Obat dan Makanan RI

this is my sitemap config:

{"_id":"cekbpom","startUrl":["https://cekbpom.pom.go.id/obat"],"selectors":[{"id":"linkobat","parentSelectors":["_root","next"],"type":"SelectorElementClick","clickElementSelector":"div.kt-inbox__details:nth-of-type(3)","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","multiple":true,"selector":"div.kt-inbox__details:nth-of-type(3)"},{"id":"nomor_registrasi","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Nomor Registrasi') span","multiple":false,"regex":""},{"id":"terbit","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Tanggal Terbit') span","multiple":false,"regex":""},{"id":"masa_berlaku","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Masa Berlaku s/d') span","multiple":false,"regex":""},{"id":"nama_produk","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Nama Produk') span","multiple":false,"regex":""},{"id":"bentuk_sediaan","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Bentuk Sediaan') span","multiple":false,"regex":""},{"id":"komposisi","parentSelectors":["linkobat"],"type":"SelectorText","selector":"span#ing","multiple":false,"regex":""},{"id":"merk","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Merk') span","multiple":false,"regex":""},{"id":"kemasan","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Kemasan') span","multiple":false,"regex":""},{"id":"pendaftar","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Pendaftar') span","multiple":false,"regex":""},{"id":"produksi","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Diproduksi Oleh') span","multiple":false,"regex":""},{"id":"lisensi","parentSelectors":["linkobat"],"type":"SelectorText","selector":"td tr:contains('Pemberi Lisensi') span","multiple":false,"regex":""},{"id":"next","parentSelectors":["_root","next"],"paginationType":"auto","selector":"button.nextt","type":"SelectorPagination"}]}

@der Hello, it appears that the sitemap navigation is fully based on the click execution - the results will start to appear only once the scraper has clicked through all of the available listing and pagination pages.

To test whether the sitemap is functional, please, be sure to limit or remove the pagination selector.

Learn more: My scraping job is running, although no results are being returned - Web Scraper Knowledge Base

Here's a sitemap example:

{"_id":"cekbpom-2","startUrl":["https://cekbpom.pom.go.id/obat"],"selectors":[{"clickElementSelector":"div.kt-inbox__details:nth-of-type(3)","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":3000,"discardInitialElements":"do-not-discard","id":"linkobat","multiple":true,"parentSelectors":["_root"],"selector":".modal-lg div.modal-content","type":"SelectorElementClick"},{"id":"nomor_registrasi","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Nomor Registrasi') span","type":"SelectorText"},{"id":"terbit","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Tanggal Terbit') span","type":"SelectorText"},{"id":"masa_berlaku","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Masa Berlaku s/d') span","type":"SelectorText"},{"id":"nama_produk","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Nama Produk') span","type":"SelectorText"},{"id":"bentuk_sediaan","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Bentuk Sediaan') span","type":"SelectorText"},{"id":"komposisi","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"span#ing","type":"SelectorText"},{"id":"merk","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Merk') span","type":"SelectorText"},{"id":"kemasan","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Kemasan') span","type":"SelectorText"},{"id":"pendaftar","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Pendaftar') span","type":"SelectorText"},{"id":"produksi","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Diproduksi Oleh') span","type":"SelectorText"},{"id":"lisensi","multiple":false,"parentSelectors":["linkobat"],"regex":"","selector":"td tr:contains('Pemberi Lisensi') span","type":"SelectorText"},{"clickElementSelector":"button.close","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"close-click","multiple":true,"parentSelectors":["linkobat"],"selector":"_parent_","type":"SelectorElementClick"}]}

thank you so much for the guidance Mr ViestursWS