Skip to content

Commit

Permalink
Changes in version 1.4.1
Browse files Browse the repository at this point in the history
------------------------
* piano example
* selenium-java 4.0.0-rc-1
* selenium docker 4.0.0-rc-2-prerelease-20210916
  • Loading branch information
hibissscus committed Sep 20, 2021
1 parent bd65bce commit 7939f38
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
11 changes: 5 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ plugins {
id("org.jetbrains.dokka") version "1.5.0"
}

group = "testee"
version = "1.4.0"
group = "it.testee"
version = "1.4.1"

repositories {
mavenCentral()
Expand All @@ -23,7 +23,6 @@ dependencies {
// kotlin
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.5.30")
// selenium
implementation("org.seleniumhq.selenium:selenium-support:4.0.0-rc-1")
implementation("org.seleniumhq.selenium:selenium-java:4.0.0-rc-1")
// testng
implementation("org.testng", "testng", "7.4.0")
Expand Down Expand Up @@ -119,9 +118,9 @@ tasks {
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "it.testee"
artifactId = "testee"
version = "1.0.3"
artifactId = rootProject.name
groupId = project.group.toString()
version = project.version.toString()

from(components["java"])
}
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
command: "gradle e2e -De2e.selenium=http://selenium-hub:4444"
selenium-hub:
container_name: selenium-hub
image: selenium/hub:4.0.0-rc-1-20210902
image: selenium/hub:4.0.0-rc-2-prerelease-20210916
ports:
- "4444:4444"
- "4443:4443"
Expand All @@ -29,7 +29,7 @@ services:
- TZ=Europe/Berlin
chrome:
container_name: chrome
image: selenium/node-chrome:4.0.0-rc-1-20210902
image: selenium/node-chrome:4.0.0-rc-2-prerelease-20210916
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -43,7 +43,7 @@ services:
- "6901:5900"
firefox:
container_name: firefox
image: selenium/node-firefox:4.0.0-rc-1-20210902
image: selenium/node-firefox:4.0.0-rc-2-prerelease-20210916
shm_size: 2gb
depends_on:
- selenium-hub
Expand All @@ -57,7 +57,7 @@ services:
- "6911:5900"
edge:
container_name: edge
image: selenium/node-edge:4.0.0-rc-1-20210902
image: selenium/node-edge:4.0.0-rc-2-prerelease-20210916
shm_size: 2gb
depends_on:
- selenium-hub
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ object WebDriverFactory {
}

opt.setAcceptInsecureCerts(true)
//opt.addArguments("--incognito")
opt.addArguments("--incognito")
opt.addArguments("--disable-notifications")
opt.addArguments("--window-size=1280,800")
opt.addArguments("--lang=de")
Expand Down

0 comments on commit 7939f38

Please sign in to comment.