This repository has been archived by the owner on Apr 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #282 from Magenic/JonR_DocumentationUpdates
Repair Documentation Links
- Loading branch information
Showing
74 changed files
with
1,549 additions
and
1,574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# <img src="resources/maqslogo.ico" height="32" width="32"> Coming Soon | ||
# <img src="resources/jmaqslogo.jpg" height="32" width="32"> Coming Soon |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# <img src="resources/maqslogo.ico" height="32" width="32"> MAQS | ||
# <img src="resources/jmaqslogo.jpg" height="32" width="32"> MAQS | ||
|
||
## Introduction to MAQS | ||
MAQS stands for Magenic's automation quick start. | ||
## Introduction to JMAQS | ||
JMAQS is Magenic's Java based automation quick start. | ||
|
||
It … | ||
- is a modular test automation framework | ||
- can be used as the base for your automation project or individual pieces can be used to enhance existing frameworks | ||
- is maintained/extended by Magenic volunteers | ||
|
||
The main idea behind MAQS is to avoid **reinventing the wheel**. Most automation engagements have you doing the same basic steps to get a functioning framework implemented. Utilizing project templates, NuGet, and utility libraries we are able to have a functioning framework up and running in minutes, almost entirely removing on the initial time investment on implementing an automation solution. | ||
The main idea behind JMAQS is to avoid **reinventing the wheel**. Most automation engagements have you doing the same basic steps to get a functioning framework implemented. Utilizing project templates, NuGet, and utility libraries we are able to have a functioning framework up and running in minutes, almost entirely removing on the initial time investment on implementing an automation solution. | ||
|
||
To download either versions of MAQS, navigate towards the installation section | ||
To download either versions of JMAQS, navigate towards the installation section | ||
|
||
 | ||
 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# <img src="resources/maqslogo.ico" height="32" width="32"> License | ||
# <img src="resources/jmaqslogo.jpg" height="32" width="32"> License | ||
The MIT License (MIT) | ||
Copyright (c) 2019 Magenic | ||
Copyright (c) 2020 Magenic | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
 | ||
 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# <img src="resources/jmaqslogo.jpg" height="32" width="32"> Base Appium Test | ||
|
||
## Overview | ||
The BaseAppiumTest has methods that sets up the webdriver, gets the mobile driver, tears down the appium driver, and creates a new test object. | ||
|
||
# Available calls | ||
[GetAppiumDriver](#GetAppiumDriver) | ||
[BeforeLoggingTeardown](#BeforeLoggingTeardown) | ||
[CreateNewTestObject](#CreateNewTestObject) | ||
|
||
## GetAppiumDriver | ||
This method gets the default Appium/Mobile driver. | ||
```java | ||
public AppiumDriver<WebElement> getAppiumDriver() { | ||
return this.getTestObject().getAppiumDriver(); | ||
} | ||
``` | ||
|
||
## BeforeLoggingTeardown | ||
Takes a screen shot if needed and tear down the appium driver. It is called during teardown. | ||
```java | ||
this.beforeLoggingTeardown(resultType); | ||
``` | ||
|
||
## CreateNewTestObject | ||
This method creates a new Appium test object based on the mobile device. | ||
```java | ||
protected void createNewTestObject() { | ||
this.setTestObject(new AppiumTestObject(this::getMobileDriver, this.createLogger(), | ||
this.getFullyQualifiedTestClassName())); | ||
} | ||
|
||
this.CreateNewTestObject(); | ||
``` |
Oops, something went wrong.