SDET Java: Automation Testing from Scratch - Complete Guide
- Descrição
- Currículo
- FAQ
- Revisões
From this course, you can learn how to become Software Development Engineer in Test and get all the necessary practical skills.
There are a lot of other courses on this topic. So, why would you choose exactly this course? Here are just a few reasons:
– Coding examples
To learn to program is not enough just watching videos and reading books. You also need to have a lot of practice. In this training course, you will review multiple practical tasks and coding examples which will help you learn and understand Java better.
– Open source code
We hide nothing from our students! Including the source code for the home task solutions and source code of examples that were shared during the lesson. Having the source code you can just copy and paste it to run it on your local computer to understand how things work better.
You are allowed to use all source code examples for learning purposes. This helps significantly to configure the environment and make tests work, especially in case students didn’t work with any testing framework in the past.
– Q&A support
The significant difference between the online and offline learning process is the instructor’s availability. If you are in one room with a tutor he always can help you to get understand the specific concept or to help fix your code on your computer.
In this course, we are supporting students with answers to any questions flagged in the Q&A section. In case there will be recurring questions – separate video lessons will be created to show how to address the issue.
So with this course you are not just getting video materials, code exercises, source code, access to the free mobile application without limits (which is still pretty cool, huh? 🙂 ), but you also get tutor support and answers to your questions along with this course.
– Relevant knowledge
After our team investigated other Java courses on Udemy we realized that most of them have nothing in common with real life. The information which is shared there is very old and significantly out of date. For example, the instructor teaches a framework which is not been used already for 15 years. Or instructors do stress on the programming design which is not used anymore at all!
The instructor of this course is a consultant in a top-rated IT outsourcing company and helps to bring cutting-edge solutions in IT for all his clients. Feel free to check the LinkedIn page of the instructor and check skills endorsement. More than 19 thousand people across all over the world (BTW most of them are from the top 100 companies of the world) evaluated the skills of Andrii Piatakha.
With this course, you can be sure that you will spend your time learning the right things from one of the best IT consultants in the world.
– Free mobile App without limits for our students
Knowing Java is one skill. Be able to pass interviews in the company – that is another skill 🙂 Nowadays a lot of companies use tests to select candidates on the first level of interview. We developed applications to practice skills specifically for such purposes.
In this course, we will provide you link to download our FREE mobile app for android. (soon it will be also available for iOS platforms)
The instructor of this course comes up with hundreds of tests that are used to test the knowledge of candidates. With this application, you will be well-prepared for the interview.
Also, only for our students – there is no limit on attempts to pass certification. In the course, we will tell you how to set up a special bonus code that will remove restrictions for our students inside the app.
– High concentration of useful material in each lesson
Sometimes you can notice that watching 5 minutes of our lesson is equivalent to watching another 30 minutes lesson.
This is because time spent for preparation for the lesson (script for the lesson, lesson structure) and video editing (to cut boring pieces of the lesson or time when the program loads) sometimes 10 times as much (sometimes even 20) as the final lesson duration after video editing.
Also, each topic is separated from another. In case some concept will be explained in the next lesson and you don’t need to worry about understanding this in the scope of this lesson – the instructor will make an announcement when a specific topic will be covered.
Go and try it yourself! We will appreciate your feedback.
So don’t wait! Take a look at the lessons’ preview if you still have doubts!
Buy this course today, and you will get all updates for FREE!
For those who successfully passed this training course, or for students who were recognized for asking amazing questions, there is a special offer from the IT-Bulls company! The creator of this course is IT-Bulls company CEO and Founder. We are always in search of talents to run our amazing startups together with you. Probably you always dreamed about running your startup? In this course, you will be able to find the team who will teach you how to do that and (in particular cases) will be glad to help with implementation!
Hope you enjoy this course! And remember, we appreciate all your feedback! Your feedback will help us to become even better! Your feedback will help us to create to best Java course ever!
See you at the lessons! 🙂
-
1Communication planVídeo Aula
From this lecture you will learn:
• How to communicate during this course• Where to ask questions
• How to ask questions
• Communication channels
-
2Unlimited access to 'Learn IT' application for studentsVídeo Aula
From this lecture you will learn:
• Where to find good tests to verify your knowledge
• How to get unlimited access to Learn IT application (only for my students from Udemy)
-
3Tips to Improve Your Course Taking ExperienceTexto
-
4Additional Free Learning Materials to Use During the CourseTexto
-
5Why Java and why this course? What is JDK, JRE and JVM?Vídeo Aula
From this lecture you will learn:
• Java History
• Why Java
• What you can implement with Java
• This training course structure
• Opportunities after this course
• What is JVM
• What is JRE
• What is JDK
-
6About Latest Java VersionTexto
-
7JDK InstallationVídeo Aula
From this lecture you will learn:
• How to chose JDK version
• Difference between openjdk and oraclejdk
• How to install jdk on computer
• How to configure environment variables
-
8First application: Hello World AppVídeo Aula
From this lecture you will learn:
• What are console applications
• How to compile .java files to bytecode
• Basic Syntax
• How to create ‘Hello World’ app on Java
• What are compilation errors
• How to execute our programs on JVM
-
9Homework Solution: .bat file creationVídeo Aula
In the lesson we will solve homework together with and we will write batch script from scratch to compile your source code and run Hello World application.
-
10Integrated Development Environment, Eclipse OverviewVídeo Aula
From this lecture you will learn:
• What is IDE
• What are the most popular IDE for Java development
• Eclipse for Java EE developers: Overview
• Eclipse Java Project
• What is a package
-
11Comments in Java source codeVídeo Aula
From this lecture you will learn:
• What are comments
• What are types of comments in Java source code
• Java Doc
• Tips and best practices
-
12Quiz: Java Basics - Check yourselfTexto
The Quiz covers content from the following lessons:
What is Java and JDK
JDK Installation
First application: Hello World App
Integrated Development Environment, Eclipse Overview
Comments in Java Source Code
-
13Primitive types and variablesaVídeo Aula
From this lecture you will learn:
• What data types exists in Java
• What are primitive types
• Integers
• Floating-point numbers
• Characters
• Boolean
• Primitive types conversion
• What are variables
• 'var' variables
• Java keywords
-
14Number SystemsVídeo Aula
From this lecture you will learn:
• Number Systems
• Binary number system
• Octal number system
• Hexadecimal number system
• How to convert from one system to another
• Binary, octal and hexadecimal literals in Java
-
15ArraysVídeo Aula
From this lecture you will learn:
• Arrays: overview
• One-dimensional arrays
• How to access elements in arrays
• Default values for elements in array
• ArrayIndexOutOfBoundsException
• Array literal
• Multidimensional arrays
•‘ null’ values
• java.util.Arrays
• import statement
• How to investigate JDK source code
-
16Quiz: Primitive data types, variables and arrays - Check yourselfTexto
The Quiz covers content from the following lessons:
Primitive types and variables
Number Systems
Arrays
-
17Packages: creation and package presentation in eclipseVídeo Aula
From this lecture you will learn:
- how to create packages in eclipse
- how to configure package presentation in eclipse
- what is flat and hierarchical package presentation
- how to create nested packages
- how to create package during class creation
-
18Plugins: how to install free plugins, eclipse marketplace, workspace stylesVídeo Aula
From this lecture you will learn:
- What are eclipse plugins?
- How to install free plugins?
- Eclipse marketplace
- How to change style of the workspace
-
19Code Refactoring in EclipseVídeo Aula
From this lecture you will learn:
• How to rename multiple items at once
• Code formatting
• Configure formatting rules
• Extract variable from expression
• Extract method from multiple statements
• Import optimization
-
20Operators in JavaVídeo Aula
From this lecture you will learn:
• What are operators?
• Type of operators
• Arithmetic operators
• Assignment operators
• Relational operators
• Logical operators
• Bitwise operators
• Ternary operator
• Operator precedence
-
21Operations with integers and floating-point numbers, BigDecimal typeVídeo Aula
From this lecture you will learn:
• Dividing of integers specifics
• Subtraction of floating-point numbers specifics
• BigDecimal type
• How to control precision of arithmetic operations
-
22Math class, NaN, InfinityVídeo Aula
From this lecture you will learn:
• java.lang.Math class overview
• How to perform basic mathematical operations
• Rounding
• Random number generation
• NaN - what is not a number?
• Infinity - what is 'infinity'?
• How to find max and min value?
• How to find square root?
-
23Type of the expression in JavaVídeo Aula
From this lecture you will learn:
• What is expression
• What is statement
• Type of the expression in Java
• Concatenation with String
-
24Compare primitive and reference types & Java Memory ModelVídeo Aula
From this lecture you will learn:
• How to compare primitives
• How to compare reference types
• Java Memory Model: Heap and Stack in Java
• Integer pool
• equals() method
• How to compare arrays
-
25Read user input from consoleVídeo Aula
From this lecture you will learn:
• How you can read input from the console
• What is System.in
-
26Simple console integer calculatorQuestionário
-
27Calculate Area of TriangleQuestionário
-
28Calculate Circle CircumferenceQuestionário
-
29Homework review: Operators and OperationsVídeo Aula
From this lecture you will learn:
• How to run programs with arguments
• Project Explorer VS Navigator view in Eclipse
• How to run JVM with arguments
• How to set up maximum heap size for JVM
• Solutions for coding exercises
-
30Quiz: Operators and Operations with primitive types - Check yourselfTexto
The Quiz covers content from the following lessons:
Operators in Java
Operations with integers and floating-point numbers, BigDecimal type
Math class, NaN, Infinity
Type of the expression in Java
Compare primitive and reference types & Java Memory Model
Read user input from console
-
31String: object creation and main methods overviewVídeo Aula
From this lecture you will learn:
• java.lang.String class overview
• Main String methods
• How to create String objects
-
32String comparison: How to compare Strings and what is String PoolVídeo Aula
From this lecture you will learn:
• String pool
• String comparison
-
33Escape Sequences in JavaVídeo Aula
From this lecture you will learn:
• What are escape sequences?
• What escape sequences are available in Java?
• Unicode characters escaping
-
34String FormattingVídeo Aula
From this lecture you will learn:
• How to format string
• What are format specifiers?
• How to use Formatter?
• When need to format strings?
-
35Regular expressions in JavaVídeo Aula
From this lecture you will learn:
• What are regular expressions?
• When to use regular expressions?
• Why we need regular expressions?
• How to write regular expressions in Java?
• Pattern and Matcher objects in Java
• How to find words in String
-
36Format floating-point numberQuestionário
-
37Split WordsQuestionário
-
38Homework review: StringVídeo Aula
In this lesson you will see one of the way to solve home tasks. Best practices will be shared. POSIX groups will be discussed.
-
39Quiz: Strings in Java - Check yourselfTexto
The Quiz covers content from the following lessons:
String: object creation and main methods overview
String comparison: How to compare Strings and what is String Pool
Escape Sequences in Java
String Formatting
Regular expressions in Java
-
40'if - else' constructionVídeo Aula
From this lecture you will learn:
• How to use 'if' statement
• Syntax of 'if' statement
• Nested 'if' statements
• 'if-else-if' ladder
-
41Admin and Guest mode for applicationQuestionário
-
42Simple Number CalculatorQuestionário
-
43Homework review: 'if' statementVídeo Aula
In this lesson you will find solution for coding exercises from 'if' statement topic
-
44'switch' constructionVídeo Aula
From this lecture you will learn:
• How to use 'switch' statement
• Syntax of 'switch' statement
• Type of expression to be used in 'switch'
• 'break' statement
• 'default' statement
• 'switch' vs 'if statement
-
45User Activity SelectorQuestionário
-
46Homework review: 'switch' statementVídeo Aula
In this lesson you will find solution for 'swtich' statement homework.
-
47Quiz: Control Statements - Check yourselfTexto
The Quiz covers content from the following lessons:
‘if-else’ construction
‘switch’ construction
-
49'while' loopVídeo Aula
From this lecture you will learn:
• What are iteration statements in Java?
• When we need to use iteration statements in Java
• Examples of loops in Java
• 'while' loop
-
50'do-while' loopVídeo Aula
From this lecture you will learn:
• How to use 'do-while' loop
• Usage of ´do-while´ loop - examples
• When to use 'do-while' over 'while' loop
-
51'for' with condition loopVídeo Aula
From this lecture you will learn:
• How to use 'for' with condition loop
• Examples of the use
• Comma in for loop
-
52'for each' loopVídeo Aula
From this lecture you will learn:
• How to use 'for each' loop
• Examples of the use
• Shortcut in eclipse to create 'for each' loop
-
53Nested loopsVídeo Aula
From this lecture you will learn:
• How you can put one loop inside another one
• When you need to use nested loops
-
54Jump Statements - Break and ContinueVídeo Aula
From this lecture you will learn:
• What are jump statements
• Continues statement
• Break statement
-
55Labels in JavaVídeo Aula
From this lecture you will learn:
• What is goto statement in programming?
• Labels in Java
• How to use labels in Java
-
56Print digits from new lineQuestionário
-
57Pyramid in consoleQuestionário
-
58Print matrix to consoleQuestionário
-
59Homework review: Iteration Statements (Loops)Vídeo Aula
In this lesson we will review solution for coding exercises.
-
60Quiz: Iteration Statements (Loops) in Java - Check yourselfTexto
The Quiz covers content from the following lessons:
'while' loop
'do-while' loop
'for' with condition loop
'for each' loop
Nested loops
Jump Statements - Break and Continue
Labels in Java
-
61Methods in Java: OverviewVídeo Aula
From this lecture you will learn:
• What is a method
• Method signature
• How to declare methods
• How to call methods
• Method overloading
• Pass arguments by value
• Recursive methods
• Variable-length arguments
-
62Parameter Passing Mechanism in JavaVídeo Aula
From this lecture you will learn:
• Passing data by value
• Passing data by reference
• Passing primitive types to method in Java
• Passing reference types to method in Java
-
63Recursive methodsVídeo Aula
From this lecture you will learn:
• What is recursion
• What are recursive methods
• How to write recursive methods
• When do we need recursive methods
• Pros and cons of recursive methods
-
64Variable Length ArgumentsVídeo Aula
From this lecture you will learn:
• What are variable-length arguments
• Syntax of varargs
• Varargs in the methods
-
65Find max int in arrayQuestionário
-
66Draw empty rectangleQuestionário
-
67Calculate Amount of WordsQuestionário
-
68Filter String arrayQuestionário
-
69Rotate MatrixQuestionário
-
70Extend ArrayQuestionário
-
71Greatest Common DivisorQuestionário
-
72Sum all digits in numberQuestionário
-
73String ProcessorQuestionário
-
74Turn each first letter in a word to capitalQuestionário
-
75Convert decimal to Roman numbers and vice versaQuestionário
-
76Homework review: MethodsVídeo Aula
In this video we will review coding exercises from this section