It is necessary with the help of xpath to select the desired radio element, but in my case this can be done only if you select 2 parameters simultaneously: name and value .

This is how the name selection works:

 el = driver.FindElement(By.XPath("//input[@name='aiosp_rewrite_titles']")); 

How to enter the choice for value = 0 ?

    2 answers 2

    Add and @value='0' .

    el = driver.FindElement(By.XPath("//input[@name='aiosp_rewrite_titles' and @value='0']"));

      either add [@value = '0']

       el = driver.FindElement(By.XPath("//input[@name = 'aiosp_rewrite_titles'][@value = '0']"));