There was an error while loading. Please reload this page.
1 parent d17450c commit c81def1Copy full SHA for c81def1
lambdatest.py
@@ -3,6 +3,7 @@
3
import os
4
from selenium import webdriver
5
from selenium.webdriver.common.by import By
6
+from selenium.webdriver.chrome.options import Options as ChromeOptions
7
8
username = os.getenv("LT_USERNAME") # Replace the username
9
access_key = os.getenv("LT_ACCESS_KEY") # Replace the access key
@@ -35,7 +36,7 @@
35
36
# Note: for additional capabilities navigate to https://www.lambdatest.com/support/docs/test-settings-options/
37
38
driver = webdriver.Remote(
- command_executor="http://{}:{}@beta-smartui-hub.lambdatest.com/wd/hub".format(
39
+ command_executor="http://{}:{}@hub.lambdatest.com/wd/hub".format(
40
username, access_key),options=options)
41
42
# tearDown runs after each test case
0 commit comments