Skip to content

saikrishna321/taiko-android

Repository files navigation


TaikoAndroid


Build Status

Demo Doccou alpha

Installation

npm install taiko-android

Usage

import { openBrowser, closeBrowser, goto, evaluate } from 'taiko';

jest.setTimeout(30000);
beforeEach(async () => {
  await openBrowser();
});

afterEach(async () => {
  await closeBrowser();
});
test('Should open browser and send events', async () => {
  await goto('http://the-internet.herokuapp.com/');
  let version = await evaluate(
    () => navigator.appVersion.match(/.*Chrome\/([0-9.]+)/)[1]
  );
  expect(version.result).toBeTruthy();
});

openBrowser Command

Opens the chrome browser and forwards the host and port to taiko and start using all the taiko API.

openBrowser();

closeBrowser Command

Close chrome browser.

closeBrowser();

Thanks for support

TaikoAndroid

About

A plugin to run web tests on android devices and emulator using Taiko

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published