A plugin to run [Taiko](https://taiko.dev/) tests on [LambdaTest](https://lambdatest.com/) Platform.
A plugin to run Taiko tests on LambdaTest Platform.
``shell`
npm install taiko-lambdatest --save-dev
`javascript
const { goto, openBrowser, closeBrowser } = require('taiko');
describe('Taiko Tests', async () => {
const capabilities = {
'browserName': 'Chrome',
'browserVersion': '93.0',
'LT:Options': {
'platform': 'Windows 10',
'build': '
'name': '
'user': '
'accessKey': '
'network': true
}
}
beforeScenario('Before Test Suite', async () => {
await openBrowser({
target: ws://
},
capabilities
); // Opens the browser on a remote machine
});
afterScenario('After Test Suite', async (context) => {
await closeBrowser(context); // Will close the browser and the test session
});
// Test step for the added taiko spec files
step('Navigate to
await goto(url)
});
});
``