How to use seleccionar_archivo method in SeleniumBase

Best Python code snippet using SeleniumBase

main.py

Source:main.py Github

copy

Full Screen

...31 def abrir_ventana_dialog(self, widget, data=None):32 self.ventana_dialog.show()33 def cerrar_ventana_dialog(self, widget, data=None):34 self.ventana_dialog.hide()35 def seleccionar_archivo(self, widget):36 self.fichero = os.path.basename(str(self.ventana_dialog.get_filename()))37 self.label_mensaje.set_text("Fichero: " + self.fichero)38 if self.fichero == str(None):39 self.label_mensaje.set_text("Elija un fichero")40 def comprimir_archivo(self, widget, data=None):41 self.ruta_fichero = os.path.abspath(str(self.ventana_dialog.get_filename()))42 if self.fichero == str(None):43 self.label_mensaje.set_text("Falta fichero a comprimir")44 else:45 fecha = datetime.datetime.now()46 fecha = fecha.strftime("%d-%m-%Y_%H.%M.%S")47 fichero_comprimido = zipfile.ZipFile(str(fecha) + "_copia.zip", "w")48 fichero_comprimido.write(self.ruta_fichero, self.fichero, zipfile.ZIP_DEFLATED)49if __name__ == '__main__':...

Full Screen

Full Screen

FileManager.py

Source:FileManager.py Github

copy

Full Screen

...15 self.lbl_imagen = QLabel('', self)16 self.lbl_imagen.move(30, 40)17 self.lbl_imagen.setFixedWidth(340)18 self.lbl_imagen.setFixedHeight(340)19 def seleccionar_archivo(self):20 archivo, ok = QFileDialog.getOpenFileName(self, 'Seleccionar archivo de imagen...', 'C:\\',21 'Archivos de imágenes (*.jpg *.png)')22 if ok:23 self.lbl_imagen.setPixmap(QPixmap(archivo))24def main():25 app = QApplication(sys.argv)26 ventana = SeleccionArchivoVentana()27 ventana.show()28 sys.exit(app.exec_())29if __name__ == "__main__":...

Full Screen

Full Screen

demo17_apertura_archivo.py

Source:demo17_apertura_archivo.py Github

copy

Full Screen

...13 self.btn_seleccionar_archivo['command'] = self.seleccionar_archivo14 self.btn_seleccionar_archivo.pack()15 self.txa_contenido_archivo = scrolledtext.ScrolledText(self, width=40, height=30, wrap=tk.WORD, font=('Arial', 15))16 self.txa_contenido_archivo.pack()17 def seleccionar_archivo(self):18 archivo = askopenfile(mode='r', filetypes=[('Archivos de texto', '*.txt')])19 if archivo is not None:20 contenido = archivo.read()21 self.txa_contenido_archivo.insert(tk.INSERT, contenido)22def main():23 app = tk.Tk()24 app.title('Apertura Archivos')25 app.geometry('350x400')26 ventana = AperturaArchivo(app)27 ventana.mainloop()28if __name__ == "__main__":...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run SeleniumBase automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful