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

Нажмите для полного просмотра!
Introduction in test automation, слайд №1 Introduction in test automation, слайд №2 Introduction in test automation, слайд №3 Introduction in test automation, слайд №4 Introduction in test automation, слайд №5 Introduction in test automation, слайд №6 Introduction in test automation, слайд №7 Introduction in test automation, слайд №8 Introduction 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 " } } } allprojects { repositories { jcenter { url " } } }
Описание слайда:
Gradle settings buildscript { repositories { jcenter { url " } } } allprojects { repositories { jcenter { url " } } }

Слайд 3


Gradle settings dependencies { testCompile group: 'junit', name: 'junit', version: '4.11' // compile group: 'org.seleniumhq.selenium', name:...
Описание слайда:
Gradle settings dependencies { testCompile group: 'junit', name: 'junit', version: '4.11' // compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '2.53.1' // 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 } }...
Описание слайда:
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()...
Описание слайда:
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,...
Описание слайда:
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(" driver.findElement(By.id("id")).click();...
Описание слайда:
jUnit Annotation @Test public void openGoogle() throws Exception { driver.get(" 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
Загрузить презентацию