Skip to content

Commit a79914a

Browse files
committed
env variables
1 parent 3a8af22 commit a79914a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

SmartUI_SDK_LT_hub.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
from selenium import webdriver
44
from selenium.webdriver.common.by import By
55
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
6+
import os
67

7-
username = "<USERNAME>" # Replace the username
8-
access_key = "<ACCESS_KEY>" # Replace the access key
8+
username = os.getenv("LT_USERNAME") # Replace the username
9+
access_key = os.getenv("LT_ACCESS_KEY") # Replace the access key
910
class FirstSampleTest(unittest.TestCase):
1011
def setUp(self):
1112
options = webdriver.ChromeOptions()

0 commit comments

Comments
 (0)