mirror of
https://github.com/appium/appium.git
synced 2026-01-14 06:10:01 -06:00
* Sample code stub (#9887) * WD tests * WD sample code (#9918) * WebdriverIO sample code (#10166) * Ruby sample code (#10331) * PHP Sample Code (#10209) * Basic Android java test * Java sample code (#10427) * Sample code (#10834) * Sample code stub (#9887) * WD tests * WD sample code (#9918) * WebdriverIO sample code (#10166) * Ruby sample code (#10331) * PHP Sample Code (#10209) * Basic Android java test * Java sample code (#10427) * fixed WDIO test * Update .npmignore
57 lines
1.6 KiB
JavaScript
57 lines
1.6 KiB
JavaScript
import wd from 'wd';
|
|
import chai from 'chai';
|
|
import { iosCaps, serverConfig } from '../helpers/caps';
|
|
|
|
const {assert} = chai;
|
|
|
|
describe('Basic IOS interactions', function () {
|
|
|
|
let driver;
|
|
|
|
before(async function () {
|
|
// Connect to Appium server
|
|
driver = await wd.promiseChainRemote(serverConfig);
|
|
|
|
// Start the session
|
|
await driver.init({
|
|
...iosCaps,
|
|
app: require('../helpers/apps').iosTestApp
|
|
});
|
|
});
|
|
|
|
after(async function () {
|
|
await driver.quit();
|
|
});
|
|
|
|
it('should send keys to inputs', async function () {
|
|
// Find TextField input element
|
|
const textInputId = `TextField1`;
|
|
const textViewsEl = await driver.waitForElementByAccessibilityId(textInputId);
|
|
|
|
// Check that it doesn't have a value
|
|
let value = await textViewsEl.getValue();
|
|
assert.isNull(value, 'Input should have no value');
|
|
|
|
// Send keys to that input
|
|
await textViewsEl.sendKeys('Hello World!');
|
|
|
|
// Check that the input has new value
|
|
value = await textViewsEl.getValue();
|
|
assert.equal(value, 'Hello World!', 'Input should have newly input value');
|
|
});
|
|
|
|
it('should click a button that opens an alert', async function () {
|
|
// Find Button element and click on it
|
|
const buttonElementId = `show alert`;
|
|
const buttonElement = await driver.waitForElementByAccessibilityId(buttonElementId);
|
|
await buttonElement.click();
|
|
|
|
// Wait for the alert to show up
|
|
const alertTitleId = `Cool title`;
|
|
const alertTitleElement = await driver.waitForElementByAccessibilityId(alertTitleId);
|
|
|
|
// Check the text
|
|
const alertTitle = await alertTitleElement.text();
|
|
assert.equal(alertTitle, `Cool title`);
|
|
});
|
|
}); |