Skip to content

Commit 0a920fc

Browse files
committed
Merge branch 'master' into autolink
2 parents 5f9d430 + 3f41eab commit 0a920fc

8 files changed

Lines changed: 15 additions & 10 deletions

File tree

.github/workflows/test-ubuntu-android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ jobs:
7676
EMULATOR_TIMEOUT=$EMULATOR_TIMEOUT EMULATOR_NAME=$EMULATOR_NAME ./.github/workflows/start_emu_headless.sh
7777
7878
# https://github.com/TESTARtool/TESTAR_dev/wiki/TESTAR-and-Appium-for-Mobile-Systems#installing-appium
79-
- name: Install Appium
79+
- name: Install Appium 2.19.0 and UIAutomator 4.2.8
8080
run: |
81-
npm i -g appium@next
81+
npm i -g appium@2.19.0
8282
appium --version
83-
appium driver install uiautomator2
83+
appium driver install uiautomator2@4.2.8
8484
appium driver list --installed
8585
8686
- name: Start Appium Server

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#TESTAR v2.8.13 (29-Jun-2026)
2+
- Bump org.seleniumhq.selenium:selenium-java from 4.44.0 to 4.45.0
3+
- Update devtools dependencies to v149
4+
5+
16
#TESTAR v2.8.12 (1-Jun-2026)
27
- Add executeTriggeredAction in GenericUtilsProtocol
38
- Update parabank protocol to save login sequence in the state model

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.12
1+
2.8.13

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ subprojects {
3333
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.15.0'
3434
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.15.0'
3535
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
36-
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.44.0'
36+
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.45.0'
3737
// https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager
3838
implementation group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '6.3.4'
3939
// https://mvnrepository.com/artifact/io.appium/java-client

testar/resources/settings/webdriver_security_analysis/Protocol_webdriver_security_analysis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import org.openqa.selenium.WebElement;
3434
import org.openqa.selenium.devtools.DevTools;
3535
import org.openqa.selenium.devtools.HasDevTools;
36-
import org.openqa.selenium.devtools.v148.network.Network;
36+
import org.openqa.selenium.devtools.v149.network.Network;
3737
import org.openqa.selenium.interactions.Actions;
3838
import org.openqa.selenium.remote.RemoteWebDriver;
3939
import org.testar.SutVisualization;

testar/src/org/testar/monkey/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
public class Main {
6767

68-
public static final String TESTAR_VERSION = "v2.8.12 (1-Jun-2026)";
68+
public static final String TESTAR_VERSION = "v2.8.13 (29-Jun-2026)";
6969

7070
//public static final String TESTAR_DIR_PROPERTY = "DIRNAME"; //Use the OS environment to obtain TESTAR directory
7171
public static final String SETTINGS_FILE = "test.settings";

testar/src/org/testar/securityanalysis/oracles/HeaderAnalysisSecurityOracle.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
package org.testar.securityanalysis.oracles;
3232

3333
import org.openqa.selenium.devtools.DevTools;
34-
import org.openqa.selenium.devtools.v148.network.Network;
35-
import org.openqa.selenium.devtools.v148.network.model.Headers;
34+
import org.openqa.selenium.devtools.v149.network.Network;
35+
import org.openqa.selenium.devtools.v149.network.model.Headers;
3636
import org.testar.monkey.alayer.Verdict;
3737
import org.testar.monkey.alayer.webdriver.WdDriver;
3838
import org.testar.securityanalysis.NetworkCollector;

testar/src/org/testar/securityanalysis/oracles/SqlInjectionSecurityOracle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
package org.testar.securityanalysis.oracles;
3232

3333
import org.openqa.selenium.devtools.DevTools;
34-
import org.openqa.selenium.devtools.v148.network.Network;
34+
import org.openqa.selenium.devtools.v149.network.Network;
3535
import org.openqa.selenium.remote.RemoteWebDriver;
3636
import org.testar.monkey.alayer.*;
3737
import org.testar.monkey.alayer.actions.WdSecurityInjectionAction;

0 commit comments

Comments
 (0)