mirror of
https://github.com/appium/appium.git
synced 2026-05-02 00:09:28 -05:00
Create session and basic interactions samples (#9907)
* Add apps; add create session test * Android create session tests * iOS basic interactions test * Basic web session tests (iOS and Android)
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import wd from 'wd';
|
||||
import chai from 'chai';
|
||||
import { iosCaps, serverConfig } from '../helpers/caps';
|
||||
|
||||
const {assert} = chai;
|
||||
|
||||
describe('Create Safari session', function () {
|
||||
it('should create and destroy IOS Safari session', async function () {
|
||||
// Connect to Appium server
|
||||
const driver = await wd.promiseChainRemote(serverConfig);
|
||||
|
||||
// Start the session
|
||||
await driver.init({
|
||||
...iosCaps,
|
||||
browserName: 'Safari'
|
||||
});
|
||||
|
||||
// Navigate to google.com
|
||||
await driver.get('https://www.google.com');
|
||||
|
||||
// Test that it was successful by checking the document title
|
||||
const pageTitle = await driver.title();
|
||||
assert.equal(pageTitle, 'Google');
|
||||
|
||||
// Quit the session
|
||||
await driver.quit();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user