package com.practiceCode;
import org.openqa.selenium.Dimension;
import org.testng.annotations.Test;
/**
* @Blog Name : Selenium Code Example
* @author Deepak Gupta
* @Created Date 30-08-2017
*
*/
public class SetPageDimension extends SuperTestNG {
@Test
public void testDimension() {
driver.manage().window().setSize(new Dimension(1366, 768));
driver.get("http://www.only-testing-blog.blogspot.in/2013/09/testing.html");
}
}
import org.openqa.selenium.Dimension;
import org.testng.annotations.Test;
/**
* @Blog Name : Selenium Code Example
* @author Deepak Gupta
* @Created Date 30-08-2017
*
*/
public class SetPageDimension extends SuperTestNG {
@Test
public void testDimension() {
driver.manage().window().setSize(new Dimension(1366, 768));
driver.get("http://www.only-testing-blog.blogspot.in/2013/09/testing.html");
}
}
No comments:
Post a Comment