Skip to content
Snippets Groups Projects
Commit 16cff501 authored by Lotte Hofstede's avatar Lotte Hofstede
Browse files

44373: e2e test

parent 50cb2078
No related branches found
No related tags found
No related merge requests found
import { ProtractorPage } from './search-page.po';
import { browser } from 'protractor';
import { promise } from 'selenium-webdriver';
fdescribe('protractor SearchPage', () => {
let page: ProtractorPage;
......@@ -16,10 +18,32 @@ fdescribe('protractor SearchPage', () => {
});
it('should not contain element ds-pagenotfound when navigating to existing page', () => {
const scopeString = '7669c72a-3f2a-451f-a3b9-9210e7a4c02f';
page.navigateToSearchWithScopeParameter(scopeString);
page.getCurrentScope().then((scope: string) => {
expect<string>(scope).toEqual(scopeString);
const scope: promise.Promise<string> = page.getRandomScopeOption();
scope.then((scopeString: string) => {
page.navigateToSearchWithScopeParameter(scopeString);
page.getCurrentScope().then((s: string) => {
expect<string>(s).toEqual(scopeString);
});
});
});
it('should redirect to the correct url when scope was set and submit button was triggered', () => {
const scope: promise.Promise<string> = page.getRandomScopeOption();
scope.then((scopeString: string) => {
page.setCurrentScope(scopeString);
page.submitSearchForm();
browser.getCurrentUrl().then((url: string) => {
expect(url.indexOf('scope=' + encodeURI(scopeString))).toBeGreaterThanOrEqual(0);
});
});
});
it('should redirect to the correct url when query was set and submit button was triggered', () => {
const queryString = 'Another interesting query string';
page.setCurrentQuery(queryString);
page.submitSearchForm();
browser.getCurrentUrl().then((url: string) => {
expect(url.indexOf('query=' + encodeURI(queryString))).toBeGreaterThanOrEqual(0);
});
});
});
......@@ -20,12 +20,28 @@ export class ProtractorPage {
return element(by.tagName('select')).getAttribute('value');
}
getCurrentQuery(): promise.Promise<string> {
getCurrentQuery(): promise.Promise<string> {
return element(by.tagName('input')).getAttribute('value');
}
elementTagExists(tag: string) {
return element(by.tagName(tag)).isPresent();
setCurrentScope(scope: string) {
element(by.css('option[value="' + scope + '"]')).click();
}
setCurrentQuery(query: string) {
element(by.css('input[name="query"]')).sendKeys(query);
}
submitSearchForm() {
element(by.css('button.search-button')).click();
}
getRandomScopeOption(): promise.Promise<string> {
const options = element(by.css('select[name="scope"]')).all(by.tagName('option'));
return options.count().then((c: number) => {
const index: number = Math.floor(Math.random() * c);
return options.get(index).getAttribute('value');
});
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment