C# Add IWebElements Text Into a List

Here we have ready to use function to add all IWebElements text into a List collection when working with Selenium C#.


IList<IWebElement> allWebElements = Driver.FindElements(By.XPath("your xpath here"));
List<string> allElemetsText = allWebElements.Select(e => e.Text).ToList();
  
C#

This is a very simple function that works well, to use it you will only have to enter XPath that you will be getting your elements from, and change variables to fit your scenario.