如何比较角度js量角器

时间:2015-07-24 04:49:59

标签: angularjs automation protractor

在角度量角器自动化中,我试图使用" expect"来比较值。但我无法做到。 在我们的应用程序中,单击提交按钮后,页面将导航到欢迎页面,因此我想从欢迎页面获取预期值。这是欢迎页面Html代码

<a class="link-btn ng-binding" title="new position" ng-click="openPositionModal($event)"><i class="icon-plus"></i> new position</a>

请帮帮我..

谢谢, Raghavendra

1 个答案:

答案 0 :(得分:1)

只需检查标题为&#34;新位置&#34;在场。

it('should navigate to the welcome page', function() {
    // Code that clicks the submit button etc
    var newPositionLink = element(by.css('[title="new position"]'));
    expect(newPositionLink.isPresent()).toEqual(true);
})