Skip to content

Commit

Permalink
fixed documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
vdelendik committed Jun 29, 2021
1 parent f039c80 commit 147ec4c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Carina is a Java-based test automation framework that unites all testing layers:
[<b>Try it out for free.</b>](https://zebrunner.com)

## Documentation and free support
* [User Manual](http://qaprosoft.github.io/carina)
* [User Manual](http://zebrunner.github.io/carina)
* [Demo Project](https://github.com/qaprosoft/carina-demo)
* [Telegram Channel](https://t.me/qps_carina)

Expand Down
2 changes: 1 addition & 1 deletion archetype/src/main/resources/archetype-resources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Install and configure [Apache Maven 3.6.0+](http://maven.apache.org/)
* Download and start the latest [Selenium standalone server](http://www.seleniumhq.org/download/)
* Download the latest version of [Eclipse](http://www.eclipse.org/downloads/) and install [TestNG plugin](http://testng.org/doc/download.html)
* [Read Carina documentation](http://qaprosoft.github.io/carina)
* [Read Carina documentation](http://zebrunner.github.io/carina)

### Import to Eclipse
If generation is successfully complete, you would see a new project folder with a name equal to the artifactId attribute specified during generation, so navigate to that folder (where pom.xml is located) and execute the following Maven task:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
import com.zebrunner.agent.testng.core.testname.TestNameResolverRegistry;

/*
* CarinaListener - base carin-core TestNG Listener.
* CarinaListener - base carina-core TestNG Listener.
*
* @author Vadim Delendik
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/automation/mobile.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Carina framework provides a useful and elegant way of Mobile (Android and iOS) Test Automation. The best practices have a lot in common with web automation, so it's highly recommended to look through [Web automation article](http://qaprosoft.github.io/carina/automation/web/).
Carina framework provides a useful and elegant way of Mobile (Android and iOS) Test Automation. The best practices have a lot in common with web automation, so it's highly recommended to look through [Web automation article](http://zebrunner.github.io/carina/automation/web/).

### Mobile special requirements:
To run mobile tests, [Appium](http://appium.io/) is used instead of Selenium. There are 2 versions of Appium: desktop and console ones, and both are good for Carina. <b>Appium must be running every time before the test run.</b>
Expand Down Expand Up @@ -118,7 +118,7 @@ capabilities.app=https://qaprosoft.s3-us-west-2.amazonaws.com/carinademoexample.
```

### Implementation of Page Objects:
The main idea is the same as in [web-testing](http://qaprosoft.github.io/carina/automation/web/#implementation-of-page-objects).
The main idea is the same as in [web-testing](http://zebrunner.github.io/carina/automation/web/#implementation-of-page-objects).

### How to find locators for Android application
To obtain the locators of elements from an Android app different programs are used such as Appium itself or convenient Android SDK tool: `uiautomatorviewer`.
Expand Down
2 changes: 1 addition & 1 deletion docs/automation/web.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ page.assertPageOpened(); // equals Assert.assertTrue(page.isPageOpened(),"PageN

Page opening strategy configuration can be set in several places:

1) in [_config.properties](http://qaprosoft.github.io/carina/configuration/). This determines whole project page open strategy.
1) in [_config.properties](http://zebrunner.github.io/carina/configuration/). This determines whole project page open strategy.

2) In page.class. This overrides global page opening strategy for a specific page.

Expand Down

0 comments on commit 147ec4c

Please sign in to comment.