123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- const selenium_webdriver_1 = require("selenium-webdriver");
- let clientSideScripts = require('./clientsidescripts');
- // Explicitly define webdriver.By.
- // We do this because we want to inherit the static methods of webdriver.By, as opposed to
- // inheriting from the webdriver.By class itself, which is actually analogous to ProtractorLocator.
- class WebdriverBy {
- constructor() {
- this.className = selenium_webdriver_1.By.className;
- this.css = selenium_webdriver_1.By.css;
- this.id = selenium_webdriver_1.By.id;
- this.linkText = selenium_webdriver_1.By.linkText;
- this.js = selenium_webdriver_1.By.js;
- this.name = selenium_webdriver_1.By.name;
- this.partialLinkText = selenium_webdriver_1.By.partialLinkText;
- this.tagName = selenium_webdriver_1.By.tagName;
- this.xpath = selenium_webdriver_1.By.xpath;
- }
- }
- exports.WebdriverBy = WebdriverBy;
- function isProtractorLocator(x) {
- return x && (typeof x.findElementsOverride === 'function');
- }
- exports.isProtractorLocator = isProtractorLocator;
- /**
- * The Protractor Locators. These provide ways of finding elements in
- * Angular applications by binding, model, etc.
- *
- * @alias by
- * @extends {webdriver.By}
- */
- class ProtractorBy extends WebdriverBy {
- /**
- * Add a locator to this instance of ProtractorBy. This locator can then be
- * used with element(by.locatorName(args)).
- *
- * @view
- * <button ng-click="doAddition()">Go!</button>
- *
- * @example
- * // Add the custom locator.
- * by.addLocator('buttonTextSimple',
- * function(buttonText, opt_parentElement, opt_rootSelector) {
- * // This function will be serialized as a string and will execute in the
- * // browser. The first argument is the text for the button. The second
- * // argument is the parent element, if any.
- * var using = opt_parentElement || document,
- * buttons = using.querySelectorAll('button');
- *
- * // Return an array of buttons with the text.
- * return Array.prototype.filter.call(buttons, function(button) {
- * return button.textContent === buttonText;
- * });
- * });
- *
- * // Use the custom locator.
- * element(by.buttonTextSimple('Go!')).click();
- *
- * @alias by.addLocator(locatorName, functionOrScript)
- * @param {string} name The name of the new locator.
- * @param {Function|string} script A script to be run in the context of
- * the browser. This script will be passed an array of arguments
- * that contains any args passed into the locator followed by the
- * element scoping the search and the css selector for the root angular
- * element. It should return an array of elements.
- */
- addLocator(name, script) {
- this[name] = (...args) => {
- let locatorArguments = args;
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- let findElementArguments = [script];
- for (let i = 0; i < locatorArguments.length; i++) {
- findElementArguments.push(locatorArguments[i]);
- }
- findElementArguments.push(using);
- findElementArguments.push(rootSelector);
- return driver.findElements(selenium_webdriver_1.By.js.apply(selenium_webdriver_1.By, findElementArguments));
- },
- toString: () => {
- return 'by.' + name + '("' + Array.prototype.join.call(locatorArguments, '", "') + '")';
- }
- };
- };
- }
- ;
- /**
- * Find an element by text binding. Does a partial match, so any elements
- * bound to variables containing the input string will be returned.
- *
- * Note: For AngularJS version 1.2, the interpolation brackets, (usually
- * {{}}), are optionally allowed in the binding description string. For
- * Angular version 1.3+, they are not allowed, and no elements will be found
- * if they are used.
- *
- * @view
- * <span>{{person.name}}</span>
- * <span ng-bind="person.email"></span>
- *
- * @example
- * var span1 = element(by.binding('person.name'));
- * expect(span1.getText()).toBe('Foo');
- *
- * var span2 = element(by.binding('person.email'));
- * expect(span2.getText()).toBe('foo@bar.com');
- *
- * // You can also use a substring for a partial match
- * var span1alt = element(by.binding('name'));
- * expect(span1alt.getText()).toBe('Foo');
- *
- * // This works for sites using Angular 1.2 but NOT 1.3
- * var deprecatedSyntax = element(by.binding('{{person.name}}'));
- *
- * @param {string} bindingDescriptor
- * @returns {ProtractorLocator} location strategy
- */
- binding(bindingDescriptor) {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findBindings, bindingDescriptor, false, using, rootSelector));
- },
- toString: () => {
- return 'by.binding("' + bindingDescriptor + '")';
- }
- };
- }
- ;
- /**
- * Find an element by exact binding.
- *
- * @view
- * <span>{{ person.name }}</span>
- * <span ng-bind="person-email"></span>
- * <span>{{person_phone|uppercase}}</span>
- *
- * @example
- * expect(element(by.exactBinding('person.name')).isPresent()).toBe(true);
- * expect(element(by.exactBinding('person-email')).isPresent()).toBe(true);
- * expect(element(by.exactBinding('person')).isPresent()).toBe(false);
- * expect(element(by.exactBinding('person_phone')).isPresent()).toBe(true);
- * expect(element(by.exactBinding('person_phone|uppercase')).isPresent()).toBe(true);
- * expect(element(by.exactBinding('phone')).isPresent()).toBe(false);
- *
- * @param {string} bindingDescriptor
- * @returns {ProtractorLocator} location strategy
- */
- exactBinding(bindingDescriptor) {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findBindings, bindingDescriptor, true, using, rootSelector));
- },
- toString: () => {
- return 'by.exactBinding("' + bindingDescriptor + '")';
- }
- };
- }
- ;
- /**
- * Find an element by ng-model expression.
- *
- * @alias by.model(modelName)
- * @view
- * <input type="text" ng-model="person.name">
- *
- * @example
- * var input = element(by.model('person.name'));
- * input.sendKeys('123');
- * expect(input.getAttribute('value')).toBe('Foo123');
- *
- * @param {string} model ng-model expression.
- * @returns {ProtractorLocator} location strategy
- */
- model(model) {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findByModel, model, using, rootSelector));
- },
- toString: () => {
- return 'by.model("' + model + '")';
- }
- };
- }
- ;
- /**
- * Find a button by text.
- *
- * @view
- * <button>Save</button>
- *
- * @example
- * element(by.buttonText('Save'));
- *
- * @param {string} searchText
- * @returns {ProtractorLocator} location strategy
- */
- buttonText(searchText) {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findByButtonText, searchText, using, rootSelector));
- },
- toString: () => {
- return 'by.buttonText("' + searchText + '")';
- }
- };
- }
- ;
- /**
- * Find a button by partial text.
- *
- * @view
- * <button>Save my file</button>
- *
- * @example
- * element(by.partialButtonText('Save'));
- *
- * @param {string} searchText
- * @returns {ProtractorLocator} location strategy
- */
- partialButtonText(searchText) {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findByPartialButtonText, searchText, using, rootSelector));
- },
- toString: () => {
- return 'by.partialButtonText("' + searchText + '")';
- }
- };
- }
- ;
- // Generate either by.repeater or by.exactRepeater
- byRepeaterInner(exact, repeatDescriptor) {
- let name = 'by.' + (exact ? 'exactR' : 'r') + 'epeater';
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findAllRepeaterRows, repeatDescriptor, exact, using, rootSelector));
- },
- toString: () => {
- return name + '("' + repeatDescriptor + '")';
- },
- row: (index) => {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findRepeaterRows, repeatDescriptor, exact, index, using, rootSelector));
- },
- toString: () => {
- return name + '(' + repeatDescriptor + '").row("' + index + '")"';
- },
- column: (binding) => {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findRepeaterElement, repeatDescriptor, exact, index, binding, using, rootSelector));
- },
- toString: () => {
- return name + '("' + repeatDescriptor + '").row("' + index + '").column("' +
- binding + '")';
- }
- };
- }
- };
- },
- column: (binding) => {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findRepeaterColumn, repeatDescriptor, exact, binding, using, rootSelector));
- },
- toString: () => {
- return name + '("' + repeatDescriptor + '").column("' + binding + '")';
- },
- row: (index) => {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findRepeaterElement, repeatDescriptor, exact, index, binding, using, rootSelector));
- },
- toString: () => {
- return name + '("' + repeatDescriptor + '").column("' + binding + '").row("' +
- index + '")';
- }
- };
- }
- };
- }
- };
- }
- /**
- * Find elements inside an ng-repeat.
- *
- * @view
- * <div ng-repeat="cat in pets">
- * <span>{{cat.name}}</span>
- * <span>{{cat.age}}</span>
- * </div>
- *
- * <div class="book-img" ng-repeat-start="book in library">
- * <span>{{$index}}</span>
- * </div>
- * <div class="book-info" ng-repeat-end>
- * <h4>{{book.name}}</h4>
- * <p>{{book.blurb}}</p>
- * </div>
- *
- * @example
- * // Returns the DIV for the second cat.
- * var secondCat = element(by.repeater('cat in pets').row(1));
- *
- * // Returns the SPAN for the first cat's name.
- * var firstCatName = element(by.repeater('cat in pets').
- * row(0).column('cat.name'));
- *
- * // Returns a promise that resolves to an array of WebElements from a column
- * var ages = element.all(
- * by.repeater('cat in pets').column('cat.age'));
- *
- * // Returns a promise that resolves to an array of WebElements containing
- * // all top level elements repeated by the repeater. For 2 pets rows
- * // resolves to an array of 2 elements.
- * var rows = element.all(by.repeater('cat in pets'));
- *
- * // Returns a promise that resolves to an array of WebElements containing
- * // all the elements with a binding to the book's name.
- * var divs = element.all(by.repeater('book in library').column('book.name'));
- *
- * // Returns a promise that resolves to an array of WebElements containing
- * // the DIVs for the second book.
- * var bookInfo = element.all(by.repeater('book in library').row(1));
- *
- * // Returns the H4 for the first book's name.
- * var firstBookName = element(by.repeater('book in library').
- * row(0).column('book.name'));
- *
- * // Returns a promise that resolves to an array of WebElements containing
- * // all top level elements repeated by the repeater. For 2 books divs
- * // resolves to an array of 4 elements.
- * var divs = element.all(by.repeater('book in library'));
- *
- * @param {string} repeatDescriptor
- * @returns {ProtractorLocator} location strategy
- */
- repeater(repeatDescriptor) {
- return this.byRepeaterInner(false, repeatDescriptor);
- }
- /**
- * Find an element by exact repeater.
- *
- * @view
- * <li ng-repeat="person in peopleWithRedHair"></li>
- * <li ng-repeat="car in cars | orderBy:year"></li>
- *
- * @example
- * expect(element(by.exactRepeater('person in
- * peopleWithRedHair')).isPresent())
- * .toBe(true);
- * expect(element(by.exactRepeater('person in
- * people')).isPresent()).toBe(false);
- * expect(element(by.exactRepeater('car in cars')).isPresent()).toBe(true);
- *
- * @param {string} repeatDescriptor
- * @returns {ProtractorLocator} location strategy
- */
- exactRepeater(repeatDescriptor) {
- return this.byRepeaterInner(true, repeatDescriptor);
- }
- /**
- * Find elements by CSS which contain a certain string.
- *
- * @view
- * <ul>
- * <li class="pet">Dog</li>
- * <li class="pet">Cat</li>
- * </ul>
- *
- * @example
- * // Returns the li for the dog, but not cat.
- * var dog = element(by.cssContainingText('.pet', 'Dog'));
- *
- * @param {string} cssSelector css selector
- * @param {string|RegExp} searchString text search
- * @returns {ProtractorLocator} location strategy
- */
- cssContainingText(cssSelector, searchText) {
- searchText = (searchText instanceof RegExp) ? '__REGEXP__' + searchText.toString() : searchText;
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findByCssContainingText, cssSelector, searchText, using, rootSelector));
- },
- toString: () => {
- return 'by.cssContainingText("' + cssSelector + '", "' + searchText + '")';
- }
- };
- }
- ;
- /**
- * Find an element by ng-options expression.
- *
- * @alias by.options(optionsDescriptor)
- * @view
- * <select ng-model="color" ng-options="c for c in colors">
- * <option value="0" selected="selected">red</option>
- * <option value="1">green</option>
- * </select>
- *
- * @example
- * var allOptions = element.all(by.options('c for c in colors'));
- * expect(allOptions.count()).toEqual(2);
- * var firstOption = allOptions.first();
- * expect(firstOption.getText()).toEqual('red');
- *
- * @param {string} optionsDescriptor ng-options expression.
- * @returns {ProtractorLocator} location strategy
- */
- options(optionsDescriptor) {
- return {
- findElementsOverride: (driver, using, rootSelector) => {
- return driver.findElements(selenium_webdriver_1.By.js(clientSideScripts.findByOptions, optionsDescriptor, using, rootSelector));
- },
- toString: () => {
- return 'by.option("' + optionsDescriptor + '")';
- }
- };
- }
- ;
- /**
- * Find an element by css selector within the Shadow DOM.
- *
- * @alias by.deepCss(selector)
- * @view
- * <div>
- * <span id="outerspan">
- * <"shadow tree">
- * <span id="span1"></span>
- * <"shadow tree">
- * <span id="span2"></span>
- * </>
- * </>
- * </div>
- * @example
- * var spans = element.all(by.deepCss('span'));
- * expect(spans.count()).toEqual(3);
- *
- * @param {string} selector a css selector within the Shadow DOM.
- * @returns {Locator} location strategy
- */
- deepCss(selector) {
- // TODO(julie): syntax will change from /deep/ to >>> at some point.
- // When that is supported, switch it here.
- return selenium_webdriver_1.By.css('* /deep/ ' + selector);
- }
- ;
- }
- exports.ProtractorBy = ProtractorBy;
- //# sourceMappingURL=locators.js.map
|