-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathValida_resultado_ecommer
37 lines (30 loc) · 1.38 KB
/
Valida_resultado_ecommer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package tests;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;
public class casabahia {
@Test
public void main() throws InterruptedException {
System.setProperty("webdriver.chrome.driver", "C:\\Users\\roger.drumond\\Downloads\\API_Rest_Aula_Youtube\\Drivers\\chromedriver.exe");
WebDriver navegador = new ChromeDriver();
navegador.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
navegador.manage().window().maximize();
navegador.get("http://www.mercadolivre.com.br");
navegador.findElement(By.id("cb1-edit")).sendKeys("panela de pressao");
navegador.findElement(By.xpath("//button[@type='submit']")).click();
WebElement resultadoPesquisa = navegador.findElement(By.className("ui-search-result__content-wrapper"));
String resultado = resultadoPesquisa.getText();
resultado = resultado.toLowerCase();
if(resultado.contains("panela") || resultado.contains("pressao") ) {
System.out.println("Sucesso na Pesquisa");
} else {
System.out.println("Erro na Pesquisa");
System.out.println("O resultado foi:" + resultado);
}
navegador.close();
//assertEquals(1,1);
}
}