How to use despejar method in SeleniumBase

Best Python code snippet using SeleniumBase

calc_yacc.py

Source:calc_yacc.py Github

copy

Full Screen

1# calculadora_yacc.py2# 3# Aula 8: 2021-04-20, barata4#5# (5+2) * (3-1)6# 177# 2-68#9# Comandos -> Comandos Comando10# | Comando11#12# Comando -> Ler13# | Escrever14# | Despejar15# | Atribuir16#17# Ler -> '?' id18# Escrever -> '!' exp19# Despejar -> '!!'20# Atribuir -> id = Exp21#22# Exp -> Exp '+' Termo23# | Exp '-' Termo24# | Termo25#26# Termo -> Termo '*' Fator27# | Termo '/' Fator28# | Fator29#30# Fator -> '(' Exp ')'31# | num32# | id33#34import ply.yacc as yacc35from calc_lex import tokens36def p_Comandos(p):37 "Comandos : Comandos Comando"38 pass39def p_Comandos_single(p):40 "Comandos : Comando"41 pass42def p_Comando(p):43 """44 Comando : Ler45 | Escrever46 | Despejar47 | Atribuir48 """49 pass50def p_Exp_add(p):51 " Exp : Exp '+' Termo"52 p[0] = p[1] + p[3]53def p_Exp_sub(p):54 " Exp : Exp '-' Termo"55 p[0] = p[1] - p[3]56def p_Exp_termo(p):57 " Exp : Termo "58 p[0] = p[1]59def p_Termo_mul(p):60 " Termo : Termo '*' Fator"61 p[0] = p[1] * p[3]62def p_Termo_div(p):63 " Termo : Termo '/' Fator"64 if(p[3] != 0):65 p[0] = p[1] / p[3]66 else:67 print("Erro: Divisão por 0, a continuar com 0...")68 p[0] = 069def p_Termo_fator(p):70 " Termo : Fator"71 p[0] = p[1]72def p_Fator_num(p):73 " Fator : num "74 p[0] = int(p[1])75def p_Fator_id(p):76 " Fator : id "77 p[0] = p.parser.registers.get(p[1])78def p_Fator_group(p):79 " Fator : '(' Exp ')' "80 p[0] = p[2]81def p_Ler(p):82 " Ler : '?' id"83 valor = int(input("Introduza um valor inteiro: "))84 p.parser.registers.update({p[2]: valor})85def p_Escrever(p):86 " Escrever : '!' Exp"87 print(p[2])88def p_Despejar(p):89 " Despejar : '!' '!' "90 print(p.parser.registers)91def p_Atribuir(p):92 " Atribuir : id '=' Exp"93 p.parser.registers.update({p[1]: p[3]})94def p_error(p):95 print('Erro sintático:', p)96 parser.success = False97# build the parser98parser = yacc.yacc()99# my state100parser.registers = {}101# Read line from input and parse it102import sys103for linha in sys.stdin:104 parser.success = True105 result = parser.parse(linha)106 if parser.success:107 print(result)108 else:...

Full Screen

Full Screen

despejar_balon.py

Source:despejar_balon.py Github

copy

Full Screen

1import numpy2from act.accion import Accion3from config import Config4from colorama import Fore, Style5config = Config()6class Despejar_balon(Accion):7 def __init__(self, agente, **args) -> None:8 self.agente = agente9 self.tiempo = 0.110 self.tipo = config.ACCIONES.JUGADOR.ACT_DESPEJAR_BALON11 self.estado = None12 self.__descripcion = f"El jugador {self.agente.nombre} "13 def descripcion(self):14 return self.__descripcion15 16 def precondicion(self, partido) -> bool:17 return partido.ultima_accion.tipo == config.ACCIONES.JUGADOR.ACT_SAQUE_ESQUINA and partido.ultima_accion.agente.equipo != self.agente.equipo18 def ejecutar(self, partido):19 # CREO QUE NO SE DEBERIA PONER PROBABILIDADES DE DESPEJE A LOS JUGADORES20 # EL DESPEJE ES UNA ACCION QUE PUEDE SALIR PARA DONDE SEA LITERALMENTE21 # BANDA, SAQUE DE ESQUINA, BALON SUELTO22 despeje = numpy.random.choice(numpy.arange(0, 3), p=[0.35, 0.3, 0.35])23 if despeje:24 self.estado = config.ACCIONES.ESTADO.DESPEJAR_BALON.DESPEJE_LINEA_FINAL25 elif not despeje:26 self.estado = config.ACCIONES.ESTADO.DESPEJAR_BALON.DESPEJE_BANDA27 else:28 self.estado = config.ACCIONES.ESTADO.DESPEJAR_BALON.DESPEJE_JUGADOR29 # print(f'{partido.obtener_tiempo()} {self.descripcion()}{Fore.GREEN}{self.estado}{Style.RESET_ALL}')30 partido.reporte.annadir_a_resumen(f'{partido.obtener_tiempo()} {self.descripcion()}{Fore.GREEN}{self.estado}{Style.RESET_ALL}', partido.pt)31 self.poscondicion(partido)32 def poscondicion(self, partido):33 partido.ultima_accion = self34 partido.pos_balon = None35 if self.estado == config.ACCIONES.ESTADO.DESPEJAR_BALON.DESPEJE_LINEA_FINAL or self.estado == config.ACCIONES.ESTADO.DESPEJAR_BALON.DESPEJE_BANDA:36 partido.estado = config.PARTIDO.ESTADO.DETENIDO ...

Full Screen

Full Screen

ficha7 ex4.py

Source:ficha7 ex4.py Github

copy

Full Screen

...25 self.cheia += litros26 self.vazia -= litros27 if self.cheia == self.capacidade:28 print('Garrafa Cheia')29 def despejar(self,litros):30 self.cheia = self.cheia - litros31 self.vazia = self.vazia + litros32print()33capacidade = int(input('Qual a Capacidade Máxima? '))34litros = Garrafa(capacidade)35despejar = int(input('Quantos litros foram despejados? '))36litros.despejar(despejar)37litros.imprimir_dados()38encher = int(input('Quantos litros foram enchidos? '))39litros.encher(encher)...

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