🗊Презентация Introduction in test automation

Нажмите для полного просмотра!
Introduction in test automation, слайд №1Introduction in test automation, слайд №2Introduction in test automation, слайд №3Introduction in test automation, слайд №4Introduction in test automation, слайд №5Introduction in test automation, слайд №6Introduction in test automation, слайд №7Introduction in test automation, слайд №8Introduction in test automation, слайд №9

Вы можете ознакомиться и скачать презентацию на тему Introduction in test automation. Доклад-сообщение содержит 9 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1





1. Introduction in test automation
Описание слайда:
1. Introduction in test automation

Слайд 2





Gradle settings

buildscript {
    repositories {
        jcenter {
            url "http://jcenter.bintray.com/"
        }
    }
}

allprojects {
    repositories {
        jcenter {
            url "http://jcenter.bintray.com/"
        }
    }
}
Описание слайда:
Gradle settings buildscript { repositories { jcenter { url "http://jcenter.bintray.com/" } } } allprojects { repositories { jcenter { url "http://jcenter.bintray.com/" } } }

Слайд 3





Gradle settings
dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.11'
    // https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
    compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '2.53.1'
    // https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-chrome-driver
    compile group: 'org.seleniumhq.selenium', name: 'selenium-chrome-driver', version: '3.3.1'

    }
Описание слайда:
Gradle settings dependencies { testCompile group: 'junit', name: 'junit', version: '4.11' // https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '2.53.1' // https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-chrome-driver compile group: 'org.seleniumhq.selenium', name: 'selenium-chrome-driver', version: '3.3.1' }

Слайд 4





Gradle Settings
test {
    testLogging {
        // Make sure output from
        // standard out or error is shown
        // in Gradle output.
        showStandardStreams = true
    }


}

tasks.withType(Test) {
    testLogging {
        events 'started', 'passed'
    }
}
Описание слайда:
Gradle Settings test { testLogging { // Make sure output from // standard out or error is shown // in Gradle output. showStandardStreams = true } } tasks.withType(Test) { testLogging { events 'started', 'passed' } }

Слайд 5





jUnit Annotation
@BeforeClass
public static void createAndStartService() throws IOException {
    service = new ChromeDriverService.Builder()
            .usingDriverExecutable(new File("\\chromedriver.exe"))
            .usingAnyFreePort()
            .build();
    service.start();
}
Описание слайда:
jUnit Annotation @BeforeClass public static void createAndStartService() throws IOException { service = new ChromeDriverService.Builder() .usingDriverExecutable(new File("\\chromedriver.exe")) .usingAnyFreePort() .build(); service.start(); }

Слайд 6





jUnit Annotation
@Before
public void setUp() throws Exception {
    driver = new ChromeDriver(service);
    driver.manage().timeouts().implicitlyWait(90, TimeUnit.SECONDS);
    driver.manage().window().maximize();
}
Описание слайда:
jUnit Annotation @Before public void setUp() throws Exception { driver = new ChromeDriver(service); driver.manage().timeouts().implicitlyWait(90, TimeUnit.SECONDS); driver.manage().window().maximize(); }

Слайд 7





jUnit Annotation
@Test
public void openGoogle() throws Exception {
    driver.get("http://google.com.ua");
    driver.findElement(By.id("id")).click();
    driver.findElement(By.xpath(".//*[@id='root']/form/input[2]")).sendKeys("dadkhb");
}
Описание слайда:
jUnit Annotation @Test public void openGoogle() throws Exception { driver.get("http://google.com.ua"); driver.findElement(By.id("id")).click(); driver.findElement(By.xpath(".//*[@id='root']/form/input[2]")).sendKeys("dadkhb"); }

Слайд 8





jUnit Annotation
@After
public void closeDriver() throws Exception{
    driver.close();
}
Описание слайда:
jUnit Annotation @After public void closeDriver() throws Exception{ driver.close(); }

Слайд 9





jUnit Annotation
@AfterClass
public void result() throws Exception{
    System.out.println("Some results");    
}
Описание слайда:
jUnit Annotation @AfterClass public void result() throws Exception{ System.out.println("Some results"); }



Похожие презентации
Mypresentation.ru
Загрузить презентацию