when going to the site when you go to the site, the button "Continue" can have 2 options: class="button" or class="btn". How to do a search at once for 2 classes in 1 FindElement. I do not know how it should look, but like so (schematically)
IWebElement element = driver.FindElement(By.ClassName("button" or "btn"));
Or easier to use if else?
IWebElement element18 = driver.FindElement(By.XPath("//div[contains(@class, 'button') or contains(@class, 'btn')]"));
Not work.
Thank you for attention