Scraping in tentimes website

Hello.
I've been scraping tentimes.com website for two weeks.
today I've tried for the 4th time and got no data.
I try to get data for events in IT&tech category
1.go to category.
2. load all events.
3. enter every event and scrape data.

In addition, I would like to know if it is possible to remove part of the data while scraping,
kind of getting only the first 20 chars or something similar.

Please check URL and sitemap,
I'm available for any other question.

Thanks in advance.

Url: https://10times.com/

Sitemap:
{"_id":"tentimes","startUrl":["https://10times.com/"],"selectors":[{"id":"category","type":"SelectorLink","parentSelectors":["_root"],"selector":"tr:nth-of-type(18) a","multiple":false,"delay":0},{"id":"load more","type":"SelectorElementScroll","parentSelectors":["category"],"selector":"tr.box:nth-of-type(n+2) h2 a","multiple":true,"delay":"3000"},{"id":"name","type":"SelectorText","parentSelectors":["events"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["events"],"selector":"img.img-thumbnail.lazy","multiple":false,"delay":0},{"id":"date","type":"SelectorText","parentSelectors":["events"],"selector":".lead li > span:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"time","type":"SelectorText","parentSelectors":["events"],"selector":"tr:contains('Timings 09:00 AM - 06:00 PM \n (General)') td:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"address","type":"SelectorText","parentSelectors":["events"],"selector":"ul.lead li:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"description","type":"SelectorText","parentSelectors":["events"],"selector":"p.desc.mng","multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","parentSelectors":["events"],"selector":"tr:contains('31 EUR') td.text-right span.text-muted","multiple":false,"regex":"","delay":0},{"id":"events","type":"SelectorLink","parentSelectors":["category"],"selector":"tr:nth-of-type(n+2) h2 a","multiple":true,"delay":0}]}

If you are after just IT category, you can use it as the start URL

This should scrape the category:

{"_id":"tentimes","startUrl":["https://10times.com/technology"],"selectors":[{"id":"load more","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":"#content tr:has(h2)","multiple":true,"delay":"4000"},{"id":"name","type":"SelectorText","parentSelectors":["events"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["events"],"selector":"img.img-thumbnail.lazy","multiple":false,"delay":0},{"id":"date","type":"SelectorText","parentSelectors":["events"],"selector":".lead li > span:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"time","type":"SelectorText","parentSelectors":["events"],"selector":"tr:contains('Timings 09:00 AM - 06:00 PM \n (General)') td:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"address","type":"SelectorText","parentSelectors":["events"],"selector":"ul.lead li:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"description","type":"SelectorText","parentSelectors":["events"],"selector":"p.desc.mng","multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","parentSelectors":["events"],"selector":"tr:contains('EUR') td.text-right span.text-muted","multiple":false,"regex":"","delay":0},{"id":"events","type":"SelectorLink","parentSelectors":["load more"],"selector":"h2 a","multiple":false,"delay":0}]}

Thanks for the support.
Unfortunatelly I've tried this script and this method and it didn't succed.
right now it is opening the website screen but not making any "click" or "link" in the scrapper.
Have you tried it on your machine as well?

Thanks.

Hi again.
Any suggestions?