summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/tests/UI/e2e/testCasesControllerSpec.js
diff options
context:
space:
mode:
authorthuva4 <tharma.thuva@gmail.com>2018-01-08 15:11:17 +0530
committerthuva4 <tharma.thuva@gmail.com>2018-01-09 13:49:55 +0530
commit9d07033a6949af2816fa4a7b234f2f3bcf027707 (patch)
tree604007ccaacac834f73c7ee1d5a1d0446ed6ce74 /testapi/opnfv_testapi/tests/UI/e2e/testCasesControllerSpec.js
parent99b9c09aca0ff3bc9a723bc404ea6a0d09ee4ef3 (diff)
Add links in prods,projects and results pages
Add links for the redirection Created Result page Change-Id: I7ba80f6a8d774d6fde33280f701c1188cb5c32d9 Signed-off-by: thuva4 <tharma.thuva@gmail.com>
Diffstat (limited to 'testapi/opnfv_testapi/tests/UI/e2e/testCasesControllerSpec.js')
-rw-r--r--testapi/opnfv_testapi/tests/UI/e2e/testCasesControllerSpec.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/testapi/opnfv_testapi/tests/UI/e2e/testCasesControllerSpec.js b/testapi/opnfv_testapi/tests/UI/e2e/testCasesControllerSpec.js
index d6b5b9f..d509c57 100644
--- a/testapi/opnfv_testapi/tests/UI/e2e/testCasesControllerSpec.js
+++ b/testapi/opnfv_testapi/tests/UI/e2e/testCasesControllerSpec.js
@@ -538,14 +538,6 @@ describe('testing the test cases page for user who is in submitter group', funct
expect(editOperation.isDisplayed()).toBe(true);
});
- it('View Operation is visible for user ', function () {
- browser.get(baseURL+"#/projects/testproject");
- var testCases = element(by.linkText('Test Cases'));
- testCases.click();
- var viewOperation = element(by.css('a[class=text-info]'));
- expect(viewOperation.isDisplayed()).toBe(true);
- });
-
it('Create the test case', function () {
browser.get(baseURL+"#/projects/testproject");
var testCases = element(by.linkText('Test Cases'));
@@ -635,7 +627,7 @@ describe('testing the test cases page for user who is in submitter group', funct
browser.get(baseURL+"#/projects/testproject");
var testCases = element(by.linkText('Test Cases'));
testCases.click();
- var viewOperation = element(by.css('a[class=text-info]'));
+ var viewOperation = element(by.linkText('testCase'));
viewOperation.click();
var name = element(by.model('TestCaseModalCtrl.testcase.name'));
var EC = browser.ExpectedConditions;