Skip to content

Commit 0bcdd46

Browse files
d.bogatkod.bogatko
authored andcommitted
Merge remote-tracking branch 'origin/master'
2 parents 00b24bc + ef5d486 commit 0bcdd46

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
lines changed

.sonarcloud.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
sonar.sources=src/main
2+
sonar.tests=src/test
3+
sonar.language=java
4+
sonar.java.binaries=.
5+
sonar.sourceEncoding=UTF-8

README.md

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,29 @@ We use interfaces where is possible, so you can implement your own version of ta
1010

1111
### Quick start
1212

13-
1. To start work with this package, simply add the dependency to your pom.xml:
13+
1. To start work with this package, simply add the dependency to your pom.xml:
1414
```
15-
<dependency>
16-
<groupId>aquality-automation</groupId>
17-
<artifactId>aquality.selenium</artifactId>
18-
<version>0.0.1</version>
19-
</dependency>
15+
<repositories>
16+
<repository>
17+
<id>ossrh</id>
18+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
19+
</repository>
20+
</repositories>
21+
22+
<dependencies>
23+
...
24+
<dependency>
25+
<groupId>com.github.aquality-automation</groupId>
26+
<artifactId>aquality-selenium</artifactId>
27+
<version>1.0-SNAPSHOT</version>
28+
<classifier>jar-with-dependencies</classifier>
29+
</dependency>
30+
...
31+
</dependencies>
32+
2033
```
2134

22-
2. Add configuration file [settings.json](./src/main/resources/settings.json) to resources folder (usually `src/test/resources`)
35+
2. Add configuration file [settings.json](./src/main/resources/settings.json) and localization [folder](./src/main/resources/localization/) to resources folder (usually `src/test/resources`)
2336

2437
3. Create instance of Browser:
2538
```java
@@ -51,4 +64,4 @@ browser.quit();
5164
### Documentation
5265
To get more details please look at documentation:
5366
- [In English](./Documentation.en.md)
54-
- [In Russian](./Documentation.ru.md)
67+
- [In Russian](./Documentation.ru.md)

src/main/resources/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"browserName" : "chrome",
3-
"isRemote": true,
3+
"isRemote": false,
44
"remoteConnectionUrl": "http://qa-auto-nexus:4444/wd/hub",
55
"isElementHighlightEnabled" : true,
66

@@ -68,4 +68,4 @@
6868
"logger": {
6969
"language": "en"
7070
}
71-
}
71+
}

0 commit comments

Comments
 (0)