Skip to content

Commit

Permalink
Merge pull request #390 from TikhomirovSergey/aspectj_to_bytebuddy2
Browse files Browse the repository at this point in the history
0.25.0-ALPHA
  • Loading branch information
TikhomirovSergey authored Feb 20, 2023
2 parents cc57357 + e1c7fff commit 95e6063
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 26 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

ext {
globalVersion = '0.25.0-MIGRATION-ALPHA'
globalVersion = '0.25.0-ALPHA'
}

repositories {
Expand Down Expand Up @@ -42,7 +42,7 @@ subprojects {
junit5Version = '5.8.2'
junit5PlatformVersion = '1.8.2'
hamcrestVersion = '2.2'
seleniumVersion = '4.8.0'
seleniumVersion = '4.8.1'
allureVersion = '2.21.0'
jacksonVersion = '2.13.3'
mockitoVersion = '4.8.1'
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.devtools.DevTools;
import org.openqa.selenium.devtools.v107.network.Network;
import org.openqa.selenium.devtools.v107.network.model.RequestWillBeSent;
import org.openqa.selenium.devtools.v107.network.model.ResponseReceived;
import org.openqa.selenium.devtools.v110.network.Network;
import org.openqa.selenium.devtools.v110.network.model.RequestWillBeSent;
import org.openqa.selenium.devtools.v110.network.model.ResponseReceived;
import ru.tinkoff.qa.neptune.selenium.functions.browser.proxy.HttpTraffic;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ru.tinkoff.qa.neptune.selenium.functions.browser.proxy;

import io.netty.handler.codec.http.HttpMethod;
import org.openqa.selenium.devtools.v107.network.Network;
import org.openqa.selenium.devtools.v110.network.Network;
import ru.tinkoff.qa.neptune.core.api.steps.Criteria;
import ru.tinkoff.qa.neptune.core.api.steps.annotations.Description;
import ru.tinkoff.qa.neptune.core.api.steps.annotations.DescriptionFragment;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package ru.tinkoff.qa.neptune.selenium.functions.browser.proxy;

import org.openqa.selenium.devtools.v107.network.Network;
import org.openqa.selenium.devtools.v107.network.model.RequestWillBeSent;
import org.openqa.selenium.devtools.v107.network.model.ResponseReceived;
import org.openqa.selenium.devtools.v110.network.Network;
import org.openqa.selenium.devtools.v110.network.model.RequestWillBeSent;
import org.openqa.selenium.devtools.v110.network.model.ResponseReceived;

import static java.lang.String.valueOf;
import static java.util.Optional.ofNullable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import com.fasterxml.jackson.core.type.TypeReference;
import org.hamcrest.Matcher;
import org.openqa.selenium.devtools.v107.network.Network;
import org.openqa.selenium.devtools.v110.network.Network;
import ru.tinkoff.qa.neptune.core.api.data.format.DataTransformer;
import ru.tinkoff.qa.neptune.core.api.hamcrest.NeptuneFeatureMatcher;
import ru.tinkoff.qa.neptune.core.api.hamcrest.NullValueMismatch;
Expand Down

This file was deleted.

0 comments on commit 95e6063

Please sign in to comment.