Best Python code snippet using SeleniumBase
hola.py
Source:hola.py
...34[] indice: int35return:36[] list37'''38def agregar_texto(lista, texto, indice):39 lista.insert(indice, texto)40 return lista41def fachada(archivo, texto_a_buscar, texto_a_agregar):42 # leer datos del archivo43 file = open(archivo)44 lista = file.readlines()45 # buscar palabra en archivo...46 indice_lista = buscar_frase(texto_a_buscar, lista)47 # si la busqueda es erronea, sal con error48 if indice_lista == -1:49 file.close()50 return("error, revisa nuevamente la palabra buscada")51 # si todo ok, agrega el texto indicado52 else:53 agregar_texto(lista, texto_a_agregar, indice_lista)54 # mostramos la lista modificada55 for i in lista:56 print(i)57 file.close()58 # salimos indicando que todo esta ok59 return("todo ok!")60############################61# main62############################63# print(buscar_frase(lista))64# agregar_texto(lista,"apla",1)65texto_a_buscar = "chau"66texto_a_agregar = "aplaaa\n"67archivo = 'texto1.txt'68print(fachada(archivo, texto_a_buscar, texto_a_agregar))69############################70# testeo71############################72'''73# para determinar si es que algun proceso queda abierto (peligroso ya que puede ocacionar saturacion)74for i in range(20):75 print(i)76 time.sleep(1)...
Archivos.py
Source:Archivos.py
1#Video 37 - Archivos Externos2from io import open3#Abre archive4archivo=open("Archivos/archivo.txt","w")5frase="Hola mundo"6#Escribe archivo7archivo.write(frase)8#Cierra archivo9archivo.close()10#Lee archive11archivo_texto=open("Archivos/archivo.txt","r")12texto=archivo_texto.read()13archivo_texto.close()14print(texto)15#Ponerlo en lista16archivo_lista=open("Archivos/archivo.txt","r")17lineas_texto = archivo_lista.readlines()18archivo_lista.close()19print(lineas_texto)20#Agregar linea de texto21agregar_texto=open("Archivos/archivo.txt","a")22agregar_texto.write("\nSegunda Linea")23agregar_texto.close()24#Video 38 - Archivos Externos II25#Agregar linea de texto26texto=open("Archivos/archivo.txt","r")27print(texto.read())28#Desplaza puntero29texto.seek(5)30print(texto.read())31#Leer y escribir 32texto=open("Archivos/archivo.txt","r+")33texto.write("comiezo")34print(texto.read())35#Modificar lineas36archivo_texto=open("Archivos/archivo.txt","r+")37lista_texto=archivo_texto.readlines()38lista_texto[1]="Linea exterior \n ojojoj"39archivo_texto.seek(0)40archivo_texto.writelines(lista_texto)...
ejercicio_n_3.py
Source:ejercicio_n_3.py
1class AgregarDatos:2 def __init__(self, lectura):3 self.lectura = lectura4 5 def agregar_texto(self, modificacion):6 self.lectura.write(modificacion + "\n")7 return modificacion8 def set_read(self, read):9 self.lectura = read10 11 def get_read(self):12 for linea in self.lectura:13 print(linea)14ruta_lectura = open(r"C:\Users\devil\OneDrive\Escritorio\Universidad\COMPUTACION\TPN2 -PARTE 2\archivo_txt\ejercicio_n_3.txt", "r+")15agregar_lineas = (input("Ingrese el texto que desea guardar en un archivo txt: "))16agregar = AgregarDatos(ruta_lectura) 17agregar.set_read(ruta_lectura)18agregar.get_read()...
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!!