Skip to content

Commit 3455622

Browse files
authored
Merge pull request #16 from Litemn/master
use open-tool links
2 parents c7b7947 + 1a924cb commit 3455622

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Ultron
22

33
[ ![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.atiurin/ultron/badge.svg) ](https://maven-badges.herokuapp.com/maven-central/com.atiurin/ultron)
4-
![Android CI](https://github.com/alex-tiurin/ultron/workflows/AndroidCI/badge.svg)
4+
![Android CI](https://github.com/open-tool/ultron/workflows/AndroidCI/badge.svg)
55

66
Ultron is an easiest framework to develop Android UI tests. It makes your tests stable, short and understandable.
77
It's based on Espresso and UI Automator and it provides a lot of new great features.
@@ -41,7 +41,7 @@ withId(R.id.send_button).isDisplayed().click()
4141
```
4242
It looks better. Names of all Ultron operations are the same as Espresso. It also provide a list of additional operations.
4343

44-
See [wiki](https://github.com/alex-tiurin/ultron/wiki/Espresso-operations) for more info.
44+
See [wiki](https://github.com/open-tool/ultron/wiki/Espresso-operations) for more info.
4545

4646
2. Action on RecyclerView list item
4747

@@ -69,7 +69,7 @@ withRecyclerView(R.id.recycler_friends)
6969
.click()
7070
```
7171

72-
Read [wiki](https://github.com/alex-tiurin/ultron/wiki/RecyclerView) and realise the magic of how *Ultron* interacts with RecyclerView.
72+
Read [wiki](https://github.com/open-tool/ultron/wiki/RecyclerView) and realise the magic of how *Ultron* interacts with RecyclerView.
7373

7474
3. Espresso WebView operations
7575

@@ -93,7 +93,7 @@ id("button1").webClick()
9393
id("title").hasText(newTitle)
9494
```
9595

96-
Read [wiki](https://github.com/alex-tiurin/ultron/wiki/WebView)
96+
Read [wiki](https://github.com/open-tool/ultron/wiki/WebView)
9797

9898
4. UI Automator operations
9999

@@ -111,7 +111,7 @@ _Ultron_
111111
```kotlin
112112
byResId(R.id.button1).click()
113113
```
114-
Read [wiki](https://github.com/alex-tiurin/ultron/wiki/UI-Automator-operation)
114+
Read [wiki](https://github.com/open-tool/ultron/wiki/UI-Automator-operation)
115115

116116
### You can get the result of any operation as boolean value
117117

@@ -167,7 +167,7 @@ object ChatPage : Page<ChatPage>() {
167167
}
168168
}
169169
```
170-
Full code sample [ChatPage.class](https://github.com/alex-tiurin/ultron/blob/master/sample-app/src/androidTest/java/com/atiurin/sampleapp/pages/ChatPage.kt)
170+
Full code sample [ChatPage.class](https://github.com/open-tool/ultron/blob/master/sample-app/src/androidTest/java/com/atiurin/sampleapp/pages/ChatPage.kt)
171171

172172
3. Call user steps in test
173173

@@ -188,7 +188,7 @@ Full code sample [ChatPage.class](https://github.com/alex-tiurin/ultron/blob/mas
188188
}
189189
}
190190
```
191-
Full code sample [DemoEspressoTest.class](https://github.com/alex-tiurin/ultron/blob/master/sample-app/src/androidTest/java/com/atiurin/sampleapp/tests/espresso/DemoEspressoTest.kt)
191+
Full code sample [DemoEspressoTest.class](https://github.com/open-tool/ultron/blob/master/sample-app/src/androidTest/java/com/atiurin/sampleapp/tests/espresso/DemoEspressoTest.kt)
192192

193193
In general, it all comes down to the fact that the architecture of your project will look like this.
194194

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ POM_PACKAGING=aar
2424
POM_DESCRIPTION=Android UI testing framework
2525
POM_INCEPTION_YEAR=2021
2626

27-
POM_URL=https://github.com/alex-tiurin/ultron
28-
POM_SCM_URL=https://github.com/alex-tiurin/ultron
29-
POM_SCM_CONNECTION=scm:git@github.com:alex-tiurin/ultron.git
30-
POM_SCM_DEV_CONNECTION=scm:git@github.com:alex-tiurin/ultron.git
27+
POM_URL=https://github.com/open-tool/ultron
28+
POM_SCM_URL=https://github.com/open-tool/ultron
29+
POM_SCM_CONNECTION=scm:git@github.com:open-tool/ultron.git
30+
POM_SCM_DEV_CONNECTION=scm:git@github.com:open-tool/ultron.git
3131

3232
POM_LICENCE_NAME=The Apache Software License, Version 2.0
3333
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt

0 commit comments

Comments
 (0)