0% found this document useful (0 votes)
42 views1 page

Ebay Search Test

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views1 page

Ebay Search Test

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

package Practice;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.Select;
import org.testng.Reporter;
import org.testng.annotations.Test;

public class EbaySearchTest {


@Test
public void eSearch()
{
WebDriver driver=new ChromeDriver();
driver.manage().window().maximize();
driver.get("http://ebay.com");

WebElement dd=driver.findElement(By.id("gh-cat"));
Select s=new Select(dd);
s.selectByVisibleText("Cameras & Photo");

driver.findElement(By.id("gh-ac")).sendKeys("Sony");
driver.findElement(By.id("gh-btn")).click();

Reporter.log("Ebay Prouct Search Test is Successful...",true);


}
}

You might also like