Skip to content

Commit b11efa5

Browse files
committed
Updated readme
1 parent a7313a4 commit b11efa5

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ buildNumber.properties
1515
.project
1616
# JDT-specific (Eclipse Java Development Tools)
1717
.classpath
18+
.idea
1819
.allure
1920
allure-results
2021
.idea

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,23 @@ The exercises in this repository are designed to build on each other in a sequen
6161
Begin your journey into Playwright and Java test automation by setting up your workspace. You have two options to start:
6262

6363
1. **Use the `sample-code/start-here` branch:**
64-
This branch contains a basic starting point with all the necessary configuration files (like a Maven pom.xml file) to help you get started quickly.
64+
This branch contains a basic starting point with all the necessary configuration files (like a Maven pom.xml file) to help you get started quickly.
6565
2. **Start with an empty Maven project:**
66-
If you prefer to set up everything from scratch, you can create your own Maven project and follow along with the course to configure it step by step. This approach is great for reinforcing your understanding of the setup process.
66+
If you prefer to set up everything from scratch, you can create your own Maven project and follow along with the course to configure it step by step. This approach is great for reinforcing your understanding of the setup process.
6767

6868
### Step 2: Follow Along With the Coding Exercises
6969
Each course module introduces new concepts and techniques, with corresponding exercises for hands-on practice. Follow these steps as you progress:
7070

7171
1. **Follow the Exercises in Order:**
72-
The modules are designed to build upon each other. Completing them in order ensures you gain a solid understanding of each concept before moving to the next.
72+
The modules are designed to build upon each other. Completing them in order ensures you gain a solid understanding of each concept before moving to the next.
7373
2. **Reference the Module-Specific Sample Code:**
74-
Each module's sample code is available in the corresponding branch, named sample-code/<module-name>. For example:
74+
Each module's sample code is available in the corresponding branch, named sample-code/<module-name>. For example:
7575
- sample-code/module-3-my-first-playwright-test
7676
- sample-code/module-6-browser-options
77-
You can check out these branches to view the sample solution for each module if you get stuck or want to see how the exercises are implemented.
77+
You can check out these branches to view the sample solution for each module if you get stuck or want to see how the exercises are implemented.
7878

7979
3. **Work on the Exercises in Your Own Branch:**
80-
Create your own branch to experiment with the exercises. For example:
80+
Create your own branch to experiment with the exercises. For example:
8181
```bash
8282
git checkout -b module-3-exercises
8383
```
@@ -89,43 +89,43 @@ Feel free to submit pull requests or raise issues if you find bugs or areas for
8989
If you encounter challenges while working through an exercise:
9090

9191
1. Check the Sample Solution:
92-
Switch to the branch for the current module to review the sample code and compare it with your own:
92+
Switch to the branch for the current module to review the sample code and compare it with your own:
9393
```bash
9494
git checkout sample-code/<module-name>
9595
```
9696

9797
2. **Learn From the Solution:**
98-
Pay attention to how the concepts are applied and implemented. Take note of any differences between your code and the solution, and try to understand why those differences exist.
98+
Pay attention to how the concepts are applied and implemented. Take note of any differences between your code and the solution, and try to understand why those differences exist.
9999

100100
### **Step 4: Starting Fresh at Any Point**
101101
If you want to start over or reset your work for a specific module:
102102

103103
1. **Checkout the Previous Module's Sample Code:**
104-
Each module builds on the previous one, and the starting point for a module is the final state of the previous module. For example:
105-
If you are working on Module 5 and want to start fresh, check out the code from sample-code/module-4-interacting-with-elements.
106-
Use the following command:
104+
Each module builds on the previous one, and the starting point for a module is the final state of the previous module. For example:
105+
If you are working on Module 5 and want to start fresh, check out the code from sample-code/module-4-interacting-with-elements.
106+
Use the following command:
107107
```bash
108108
git checkout sample-code/<previous-module-name>
109109
```
110110

111111
2. **Create a New Branch From the Previous Module:**
112-
After checking out the previous module's sample code, create a new branch to start your work:
112+
After checking out the previous module's sample code, create a new branch to start your work:
113113
```bash
114114
git checkout -b module-5-exercises
115115
```
116116

117117
3. **Continue From the Reset State:**
118-
Use the previous module's code as the starting point for the new module, and continue with the exercises.
118+
Use the previous module's code as the starting point for the new module, and continue with the exercises.
119119

120120

121121
### Step 5: Submitting Your Work
122122
If you are following along as part of the [Serenity Dojo coaching program](http://serenitydojo.academy), you will be able to get feedback about your work from one of the Serenity Dojo coaches. Here is how you do that:
123123

124124
1. Push Your Changes to Your Repository:
125-
Push your completed exercises to your forked repository to save your work:
125+
Push your completed exercises to your forked repository to save your work:
126126
```bash
127127
git push origin <your-branch-name>
128128
```
129129

130130
2. Share Your Branch:
131-
If requested, share the branch link with your instructor or team for review.
131+
If requested, share the branch link with your instructor or team for review.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.microsoft.playwright</groupId>
3434
<artifactId>playwright</artifactId>
35-
<version>1.47.0</version>
35+
<version>1.48.0</version>
3636
<scope>test</scope>
3737
</dependency>
3838
<dependency>

0 commit comments

Comments
 (0)