Skip to content

Remove extra spaces #553

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions docs/extending.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ __Use case__: Create two similar tests with different `url` (`"{{AdminCategoryPa
> Test with "extends":

```xml
<tests >
<tests>
<test name="AdminCategoryTest">
<annotations>
...
Expand All @@ -47,7 +47,7 @@ __Use case__: Create two similar tests with different `url` (`"{{AdminCategoryPa
> Test without "extends":

```xml
<tests >
<tests>
<test name="AdminCategoryTest">
<annotations>
...
Expand Down Expand Up @@ -77,7 +77,7 @@ __Use case__: Create two similar tests where the second test contains two additi
> Tests with "extends":

```xml
<tests >
<tests>
<test name="LogInAsAdminTest">
<amOnPage url="{{AdminLoginPage}}" stepKey="navigateToAdmin"/>
<fillField selector="{{AdminLoginFormSection.username}}" userInput="admin" stepKey="fillUsername"/>
Expand All @@ -95,7 +95,7 @@ __Use case__: Create two similar tests where the second test contains two additi
> Tests without "extends":

```xml
<tests >
<tests>
<test name="LogInAsAdminTest">
<amOnPage url="{{AdminLoginPage}}" stepKey="navigateToAdmin"/>
<fillField selector="{{AdminLoginFormSection.username}}" userInput="admin" stepKey="fillUsername"/>
Expand Down Expand Up @@ -125,7 +125,7 @@ __Use case__: Create two similar tests where the second one contains two additio
> Tests with "extends":

```xml
<tests >
<tests>
<test name="LogInAsAdminTest">
<before>
<amOnPage url="{{AdminLoginPage}}" stepKey="navigateToAdmin"/>
Expand All @@ -147,7 +147,7 @@ __Use case__: Create two similar tests where the second one contains two additio
> Tests without "extends":

```xml
<tests >
<tests>
<test name="LogInAsAdminTest">
<before>
<amOnPage url="{{AdminLoginPage}}" stepKey="navigateToAdmin"/>
Expand Down Expand Up @@ -295,7 +295,7 @@ __Use case__: Create an entity named `DivPanelGreen`, which is similar to the `D
> Entities with "extends":

```xml
<entities >
<entities>
<entity name="DivPanel">
<data key="divColor">Red</data>
<data key="divSize">80px</data>
Expand All @@ -310,7 +310,7 @@ __Use case__: Create an entity named `DivPanelGreen`, which is similar to the `D
> Entities without "extends":

```xml
<entities >
<entities>
<entity name="DivPanel">
<data key="divColor">Red</data>
<data key="divSize">80px</data>
Expand All @@ -331,7 +331,7 @@ __Use case__: Create an entity named `DivPanelGreen`, which is similar to the `D
> Entities with "extends":

```xml
<entities >
<entities>
<entity name="DivPanel">
<data key="divColor">Red</data>
<data key="divSize">80px</data>
Expand All @@ -347,7 +347,7 @@ __Use case__: Create an entity named `DivPanelGreen`, which is similar to the `D
> Entities without "extends":

```xml
<entities >
<entities>
<entity name="DivPanel">
<data key="divColor">Red</data>
<data key="divSize">80px</data>
Expand Down