I'm pretty familiar with xpath but not so much using css selectors in order to find a certain element.
I know this xpath //input[contains(@value, "15.02.2022")
would result into this css-selector input[value*="15.02.2022"]
.
But how would you translate this xpath //input[contains(@value, "15.02.2022") and contains(@value, "123")]
into a css selector?
How would you use the "AND" operator to find a certain element?