We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a8af22 commit a79914aCopy full SHA for a79914a
SmartUI_SDK_LT_hub.py
@@ -3,9 +3,10 @@
3
from selenium import webdriver
4
from selenium.webdriver.common.by import By
5
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
6
+import os
7
-username = "<USERNAME>" # Replace the username
8
-access_key = "<ACCESS_KEY>" # Replace the access key
+username = os.getenv("LT_USERNAME") # Replace the username
9
+access_key = os.getenv("LT_ACCESS_KEY") # Replace the access key
10
class FirstSampleTest(unittest.TestCase):
11
def setUp(self):
12
options = webdriver.ChromeOptions()
0 commit comments