I'm new to XPath and CssSelector.
below is the target html source.
<input value="1" name="uji.model.611876.button" type="radio"></input>
611876 is a random number.
I tried with the code:
driver.FindElement(By.Id("//input[@value=\"1\"]")).Click();
and
driver.FindElement(By.Id("//input[@value='1']")).Click();
but the Unable to locate element error occurred.
I need help for that situation. Thank you for reading.