Best Python code snippet using Airtest
get_dex.py
Source:get_dex.py
...4import argparse5import hashlib6from androguard.core.bytecodes.apk import APK7from androguard.core import androconf8def get_dex(apk_path):9 """10 Extract the package name of an APK11 """12 a = APK(apk_path)13 return a.get_dex()14if __name__ == '__main__':15 parser = argparse.ArgumentParser()16 parser.add_argument("PATH", help="Path to a file or folder")17 args = parser.parse_args()18 if os.path.isdir(args.PATH):19 for f in os.listdir(args.PATH):20 apk_path = os.path.join(args.PATH, f)21 if os.path.isfile(apk_path):22 if androconf.is_android(apk_path) == 'APK':23 dex_filename = os.path.splitext(apk_path)[0] + '.classes.dex'24 if not os.path.exists(dex_filename):25 with open(dex_filename, 'wb') as f:26 f.write(get_dex(apk_path))27 print("Dex file {} created".format(dex_filename))28 elif os.path.isfile(args.PATH):29 dex_filename = os.path.splitext(args.PATH)[0] + '.classes.dex'30 if os.path.exists(dex_filename):31 print("{} already exist".format(dex_filename))32 else:33 with open(dex_filename, 'wb') as f:34 f.write(get_dex(args.PATH))35 print("Dex file {} created".format(dex_filename))36 else:37 print("Invalid path")...
Pokedex.py
Source:Pokedex.py
...3# In[1]:4import json5import sys6# In[2]:7def get_dex():8 file = open(sys.path[0] + '/../Data/pokedex.json')9 dexDict = json.load(file)10 file.close()11 return dexDict12# In[17]:13def get_dex_pokemon(pokemon):14 return get_dex()[pokemon.lower()]15# In[15]:16def extraneous_form(form):17 return form == 'Alola' or form == 'Galar'18def get_pokemon():19 dexDict = get_dex()20 21 filteredDex = dict()22 for key, value in dexDict.items():23 isValid = value['num'] > 024 # Checks if form is not regional, if so does not add to filtered dex25 if 'forme' in value:26 isValid = isValid and extraneous_form(value['forme'])27 if isValid:28 filteredDex[key] = value29 ...
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!!