本文整理汇总了TypeScript中protractor.ExpectedConditions.alertIsPresent方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ExpectedConditions.alertIsPresent方法的具体用法?TypeScript ExpectedConditions.alertIsPresent怎么用?TypeScript ExpectedConditions.alertIsPresent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类protractor.ExpectedConditions
的用法示例。
在下文中一共展示了ExpectedConditions.alertIsPresent方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should go through the checkout process', async() => {
await pageElements.productListLinks.get(0).click();
const checkoutLink = pageElements.topBarCheckoutLink;
const productDetailsPage = pageElements.productDetailsPage;
const buyButton = await productDetailsPage.element(by.css('button'));
const cartPage = pageElements.cartPage;
const inputFields = cartPage.all(by.css('form input'));
const purchaseButton = await cartPage.element(by.css('button'));
const nameField = inputFields.get(0);
const addressField = inputFields.get(1);
await buyButton.click();
await browser.wait(EC.alertIsPresent(), 1000);
await browser.switchTo().alert().accept();
await checkoutLink.click();
await nameField.sendKeys('Customer');
await addressField.sendKeys('Address');
await purchaseButton.click();
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
const cartMessages = logs.filter(({ message }) => message.includes('Your order has been submitted'));
expect(cartMessages.length).toBe(1);
});
示例2: it
it('shows', async () => {
await builder.goForce();
await force.clickStartButton();
await builder.goForce();
await force.clickStartButton();
// hopefully we'll see at least one buildrequest by the time we get to
// the pending build requests page
await pendingBuildrequests.go();
const isBulidrequestsVisible = async () => {
let count = await pendingBuildrequests.getAllBuildrequestRows().count();
return count > 0;
};
await browser.wait(isBulidrequestsVisible,
5000,
"did not find buildrequests");
const br = pendingBuildrequests.getAllBuildrequestRows().first();
expect(await br.element(By.css('td:nth-child(2) a')).getText()).toMatch('slowruntests');
// kill remaining builds
await builder.go();
await force.clickCancelWholeQueue();
await browser.wait(EC.alertIsPresent(),
5000,
"did not find confirmation alert");
await browser.switchTo().alert().accept();
});
示例3: it
it('should emit checkedChange event when change the checked state', async () => {
const switchEl = element(by.id('test-switch1'));
switchEl.click();
const alert = browser.driver.switchTo().alert();
expect(alert.getText()).toBe('switch message is: true');
alert.dismiss();
await browser.wait(ExpectedConditions.not(ExpectedConditions.alertIsPresent()));
switchEl.click();
expect(browser.driver.switchTo().alert().getText()).toBe('switch message is: false');
alert.dismiss();
});
示例4:
By.partialButtonText('searchText');
By.repeater('repeatDescriptor');
By.exactRepeater('repeatDescriptor');
By.cssContainingText('cssSelector', 'searchText');
By.options('optionsDescriptor');
By.deepCss('selector');
By.className('className');
By.css('css');
By.id('id');
By.linkText('linkText');
By.js('js');
By.name('name');
By.partialLinkText('partialText');
By.tagName('tagName');
By.xpath('xpath');
ExpectedConditions.not(() => {});
ExpectedConditions.and(() => {});
ExpectedConditions.and(() => {},() => {});
ExpectedConditions.or(() => {});
ExpectedConditions.or(() => {},() => {});
ExpectedConditions.alertIsPresent();
ExpectedConditions.elementToBeClickable(element(by.css('')));
ExpectedConditions.textToBePresentInElement(element(by.css('')), 'text');
ExpectedConditions.textToBePresentInElementValue(element(by.css('')), 'text');
ExpectedConditions.titleContains('title');
ExpectedConditions.presenceOf(element(by.css('')));
ExpectedConditions.stalenessOf(element(by.css('')));
ExpectedConditions.visibilityOf(element(by.css('')));
ExpectedConditions.invisibilityOf(element(by.css('')));
ExpectedConditions.elementToBeSelected(element(by.css('')));
示例5:
/// <reference path="../../built/index.d.ts" />
import {element, by, ExpectedConditions} from 'protractor';
ExpectedConditions.not(0);
ExpectedConditions.not('1');
ExpectedConditions.not(true);
ExpectedConditions.and(0);
ExpectedConditions.and('1');
ExpectedConditions.and(true);
ExpectedConditions.or(0, () => {});
ExpectedConditions.or('1', () => {});
ExpectedConditions.or(true, () => {});
ExpectedConditions.or(() => {}, 0);
ExpectedConditions.or(() => {}, '1');
ExpectedConditions.or(() => {}, true);
ExpectedConditions.or(0, '1');
ExpectedConditions.alertIsPresent(0);
ExpectedConditions.alertIsPresent('1');
ExpectedConditions.alertIsPresent(true);
ExpectedConditions.alertIsPresent(() => {});
ExpectedConditions.elementToBeClickable(0);
ExpectedConditions.elementToBeClickable('1');
ExpectedConditions.elementToBeClickable();
ExpectedConditions.elementToBeClickable(true);
ExpectedConditions.elementToBeClickable(() => {});