Skip to content
This repository has been archived by the owner on May 29, 2023. It is now read-only.

Commit

Permalink
release 1.2.0: upgrade to Selenide 5.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Sep 28, 2021
1 parent a5c8161 commit 07ed73f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.2.0 (released 28.09.2021)
* upgrade to Selenide 5.25.0

## 1.1.7 (released 13.09.2021)
* add Selenide and other dependencies

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Currently the plugin supports only one feature:
We are going to implement more features, like using clipboard, reading logs and videos etc.

## Usage
1. Import `org.selenide:selenide-selenoid:1.1.7`
1. Import `org.selenide:selenide-selenoid:1.2.0`
2. Set `Configuration.fileDownload = FOLDER;`
3. Use method `$.download()` as usually.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

group = 'org.selenide'
archivesBaseName = 'selenide-selenoid'
version = '1.1.7'
version = '1.2.0'

apply from: rootProject.file('gradle/compilation.gradle')
apply from: rootProject.file('gradle/dependencies.gradle')
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext.versions = [
selenide: '5.24.4',
selenide: '5.25.0',
browserupproxy: '2.1.2',
netty: '4.1.68.Final',
junit: '5.8.1',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
import com.codeborne.selenide.ClipboardService;
import com.codeborne.selenide.Driver;

import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.ParametersAreNonnullByDefault;

@ParametersAreNonnullByDefault
public class SelenoidClipboardService extends ClipboardService {
@Nonnull
@CheckReturnValue
@Override
public Clipboard getClipboard(Driver driver) {
return new SelenoidClipboard(driver);
Expand Down

0 comments on commit 07ed73f

Please sign in to comment.