gpt4 book ai didi

javascript - 如何计算 Protractor 中的选择选项?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:44:38 25 4
gpt4 key购买 nike

我想计算 select 属性中的选项,但我的测试失败了,这是我的规范:

it('should count the number of option', function()) {

expect(element(by.id('sorting_options')).all(by.tagName('option').count())).toBe(3);

}

它给我错误:

C:\wamp\www\First-angular-App>protractor conf.js Starting selenium standalone server... [launcher] Running 1 instances of WebDriver Selenium standalone server started at http://192.168.100.9:12708/wd/hub [launcher] Error: C:\wamp\www\First-angular-App\protractorSpec\spec.js:37 it('should count the number of option',function()){ ^

最佳答案

您的代码格式不正确,这是正确的语法:

it('should count the number of option', function () {
expect(element(by.id('sorting_options')).all(by.tagName('option')).count()).toBe(3);
});

关于javascript - 如何计算 Protractor 中的选择选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31671215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com