selenium.common.exceptions.InvalidSelectorException

页面元素如下

在selenium中使用如下方式取元素会报错

WebElement searchInput = driver.findElement(By.className("form-control search-input"));
selenium.common.exceptions.InvalidSelectorException

原因:class 属性值中间的空格表示的是后代选择器 , 如上表示的是“form-control”内的“search-input”,改为如下方式即可

WebElement searchInput = driver.findElement(By.className("search-input"));

 

你可能感兴趣的:(selenium)