Best Python code snippet using SeleniumBase
parse_files.py
Source:parse_files.py
...15 line_items = line.split(',')16 if line_items[0] == user_type:17 return line_items[1], line_items[2]18 f.close()19 def get_all_login_credentials(self):20 # Example of parsing data from a file (Method 2)21 keys = {}22 f = open("staging_login_example.txt")23 file_data = f.read()24 file_lines = file_data.split('\n')25 for line in file_lines:26 line_items = line.split(',')27 if line_items[0] == 'admin':28 keys['admin'] = (29 {'username': line_items[1], 'password': line_items[2]})30 if line_items[0] == 'employee':31 keys['employee'] = (32 {'username': line_items[1], 'password': line_items[2]})33 if line_items[0] == 'customer':34 keys['customer'] = (35 {'username': line_items[1], 'password': line_items[2]})36 f.close()37 return keys38class ParseTests(ParseTestCase):39 def test_get_login_credentials(self):40 print("\nExample 1 of getting login info from parsing a config file:")41 print("")42 username, password = self.get_login_credentials("admin")43 print("Getting Admin User login data:")44 print("Username: %s" % username)45 print("Password: %s" % password)46 print("\nExample 2 of getting login info from parsing a config file:")47 print("")48 keys = self.get_all_login_credentials()49 print("Getting Customer login data:")50 print("Username: %s" % keys["customer"]["username"])...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!