standards-c-sharp

Use CSS-selectors instead of XPath to access elements

Don’t

// What do all those characters even mean? I don't even want to have to know.
Driver.FindElements(By.XPath(".//*[@data-selenium='hotel-item']")) 

Do

Driver.FindElements(By.CssSelector("[data-selenium=hotel-item]"))