2019-08-22

element click intercepted: Element is not clickable at point (994, 195). Other element would receive the click: ... (Session info: chrome=76.0.3809.100)

#driver.findElement(By.cssSelector(".el-radio-group")).findElement(By.cssSelector("input[value=待移动]")).click();
WebElement buttonMove = driver.findElement(By.cssSelector(".el-radio-group")).findElement(By.cssSelector("input[value=待移动]"));
((JavascriptExecutor)driver).executeScript("arguments[0].click();", buttonMove);

你可能感兴趣的:(2019-08-22)