Questo funziona bene se la ricerca di una singola stringa:trovare un elemento da XPath che contiene il testo
var element = Driver.FindElement(By.XPath("//a[contains(text(), 'About us')]"));
Ma potrei avere una dichiarazione o come nell'esempio in basso?
var element = Driver.FindElement(By.XPath("//a[contains(text(), 'About us' or 'about us')]"));
può essere un * bit * semplificato per: 'translate (text(), 'ABOUTS', 'abouts')' – har07
@ har07 grazie. Specialmente alzò lo sguardo sulle lettere che si ripetevano e perse comunque – splash58