Skip to content

Commit

Permalink
check maven center
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouYixun committed Aug 8, 2024
1 parent e5b9fa0 commit 0053241
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.soniccloudorg</groupId>
<artifactId>sonic-driver-core</artifactId>
<version>SONIC_VERSION</version>
<version>1.1.30</version>

<name>sonic-driver-core</name>
<description>The Sonic Project UIAutomation Driver Core for Android, iOS, Windows, Mac and so on.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public void performTouchAction(TouchActions touchActions) throws SonicRespExcept
public void performW3CTouchAction(final TouchActions touchActions) throws SonicRespException {
final Sequence seq = W3CActions.convert(touchActions);
final int timeoutUpdateSettings = 1500;
final String strAppiumSettingsURL = "%s/session/%s/actions".formatted(this.remoteUrl, this.sessionId);
final String strAppiumSettingsURL = String.format("%s/session/%s/actions", this.remoteUrl, this.sessionId);
final JSONObject payload = new JSONObject();
payload.put("actions", new LinkedList<Map<String, Object>>() {{ add(seq.toJson()); }});
final byte[] rawPayload = payload.toJSONString().getBytes(StandardCharsets.UTF_8);
Expand Down

0 comments on commit 0053241

Please sign in to comment.