WebDriver - element is not clickable Chrome

前端 未结 8 1143
攒了一身酷
攒了一身酷 2021-02-04 10:56

I have following problem. I run test on Firefox and Chrome. On Firefox test run correctly but on Chrome SauceLabs give a message:

unknown error: Element is not          


        
8条回答
  •  死守一世寂寞
    2021-02-04 11:25

    For me, it was creating this command instead.

    driver.FindElementByXPath("id('gender1')").SendKeys(Keys.Space);
    

    For my case, I was interacting with radio control.

提交回复
热议问题