How to select date interval before scraping results?

Hi!

The search results I'm trying to scrape first require me to write (select also possible but more long) an interval from 2 dates clicking 'Search'.

I want to scrape the results for that date rage :
Du : 01-03-2021
Au : 24-03-2024
all other options are not changed
click on "Rechercher"

When the search results appear the URL remains generic (Agenda des concours et manifestations) so I can't simply setup the scraper to start from the desired results page. Can someone please explain how I setup the scraper to select the desired options and search, before then starting the scrape?

I think it is SelectorElementClic but i do not know how to put text on it or select good date ...
Then, i do not know how to make the setting for Search Selector : i want to give phone number and mail.

Url: Agenda des concours et manifestations

Sitemap:
{id:"sitemap code"}

thanks so much in advance

@grimat Hello, yes this would require using several 'Element click' selectors.

Here's an example:

{"_id":"faccc-fr","startUrl":["https://www.faccc.fr/?p=33"],"selectors":[{"clickElementSelector":"input#popupDatepicker + img","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":1000,"discardInitialElements":"do-not-discard","id":"click-1","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"clickElementSelector":"html:has(.datepick-month-header:not(:contains(\"Mars 2021\"))) a.datepick-cmd-prev","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickMore","delay":600,"discardInitialElements":"do-not-discard","id":"click-march-2021","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"clickElementSelector":"div.datepick-month-header:contains(\"Mars 2021\") + table td:contains(\"1\"):first a","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":500,"discardInitialElements":"do-not-discard","id":"click-1-march","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"clickElementSelector":"input#popupDatepicker2 + img","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":500,"discardInitialElements":"discard-when-click-element-exists","id":"click-au","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"clickElementSelector":"div.datepick-month-header:contains(\"Mars 2024\") + table td:contains(\"24\"):first a","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":500,"discardInitialElements":"discard-when-click-element-exists","id":"click-24-march","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"}]}