mirror of
https://github.com/appium/appium.git
synced 2026-01-16 07:09:56 -06:00
This reverts commit 061e264800.
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
import wd from 'wd';
|
||||
import chai from 'chai';
|
||||
import { androidCaps, serverConfig } from '../helpers/caps';
|
||||
|
||||
const {assert} = chai;
|
||||
|
||||
describe('Create Chrome web session', function () {
|
||||
it('should create and destroy Android browser session', async function () {
|
||||
// Connect to Appium server
|
||||
const driver = await wd.promiseChainRemote(serverConfig);
|
||||
|
||||
// Start the session
|
||||
await driver.init({
|
||||
...androidCaps,
|
||||
browserName: 'Chrome'
|
||||
});
|
||||
|
||||
// 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