Selenium/Java - 无法找到带有索引的选项

我正在通过 practiceautomation.com 网站练习硒。我在注册时遇到问题 - 我的选择器无法找到带有索引的选项。


代码:


Select yearSelector = new Select(driver.findElement(By.id("years")));

            yearSelector.selectByIndex(2000);

我得到了类似的东西:


org.openqa.selenium.NoSuchElementException: Cannot locate option with index: 2000

For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html

Build info: version: '3.12.0', revision: '7c6e0b3', time: '2018-05-08T14:04:26.12Z'

System info: host: 'DESKTOP-NN5LV43', ip: '192.168.0.2', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '10.0.1'

Driver info: driver.version: unknown

这很奇怪,因为我也使用


Select dateSelector = new Select(driver.findElement(By.id("days")));

        dateSelector.selectByIndex(15);

一切正常,通常选择列表中的日期

http://img.mukewang.com/612610b30001430e12060881.jpg

图片: 年份 如您所见,年份是可见的。


斯蒂芬大帝
浏览 195回答 2
2回答

慕慕森

public void selectByIndex(int index)上述方法选择给定索引处的选项。这是通过检查元素的“索引”属性来完成的,而不仅仅是通过计数。如果没有找到匹配的选项元素,则抛出 NoSuchElementException检查 html 中的 index 属性,其值为 2000 它不应该在那里,所以尝试selector.selectByIndex(1); // see first visible year is selected or not
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java