Skip to content

Commit 2c6233e

Browse files
authored
Added Lambdatest in cloud service providers
1 parent d055c64 commit 2c6233e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/Codeception/Module/WebDriver.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,32 @@
175175
* os_version: 10
176176
* browserstack.local: true # for local testing
177177
* ```
178+
*
179+
* ### LambdaTest
180+
*
181+
* 1. Create an account at [LambdaTest](https://www.lambdatest.com/) to get your username and access key
182+
* 2. In the module configuration use the format `username`:`access key`@hub.lambdatest.com' for `host`
183+
* 3. Configure `os` and `os_version` under `capabilities` to define the operating System
184+
* 4. If your site is available only locally or via VPN you should use a tunnel app. In this case add capabilities.setCapability("tunnel",true);.
185+
*
186+
* ```yaml
187+
* modules:
188+
enabled:
189+
- WebDriver:
190+
url: http://mysite.com
191+
host: '<username>:<access key>@hub.lambdatest.com'
192+
build: <your build name>
193+
name: <your test name>
194+
port: 80
195+
browser: chrome
196+
capabilities:
197+
os: Windows
198+
os_version: 10
199+
browser_version: 86
200+
resolution: 1366x768
201+
tunnel: true # for local testing
202+
* ```
203+
*
178204
* ### TestingBot
179205
*
180206
* 1. Create an account at [TestingBot](https://testingbot.com/) to get your key and secret

0 commit comments

Comments
 (0)