top of page

Groovy - Verifica se existe a imagem na tela

Foto do escritor: Shimotsu LyuShimotsu Lyu

KeywordUtil.markWarning("${image}");
for (x in 1..number_persist) {
	KeywordUtil.markWarning("Tentativa: ${x}")
	for (i in image){
		KeywordUtil.markWarning("Procurando imagem ${i}")
		'Espera a imagem aparecer match 75%'
		//WebUI.waitForImagePresent(findTestObject("Images/$image"), 20, FailureHandling.STOP_ON_FAILURE)	
		present = WebUI.verifyImagePresent(findTestObject("Images/${i}"), FailureHandling.OPTIONAL);
		KeywordUtil.markWarning("Imagem: ${present}")
		if (present) {
			KeywordUtil.markPassed("SUCESSO. Validação de imagem. Imagem ${image} encontrada!");
			return i;
		}	
	}
	WebUI.delay(1)
}
KeywordUtil.markFailed("ERRO. Validação de imagem. Painel ${image} não encontrado!")
return null;

1 visualização0 comentário

Posts recentes

Ver tudo

Groovy - Date format

import java.text.SimpleDateFormat ]def date = new Date() today = new SimpleDateFormat("dd-MM-yyyy") println today.format(date);

Groovy - Leitura de arquivos csv

File file = new File(filepath) line = file.getText("UTF-8").split("\n")[-1].split(";") println line; prinln line[0];

Select de select SQL

select * from "tabela1" where "tabela1"."Id" in (SELECT "tabela2"."id" FROM "tabela2" where "tabela2"."numero" = 1);

Comments


bottom of page