All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openqa.selenium.remote.RemoteScript Maven / Gradle / Ivy

Go to download

Selenium automates browsers. That's it! What you do with that power is entirely up to you.

There is a newer version: 4.26.0
Show newest version
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License.

package org.openqa.selenium.remote;

import static java.nio.charset.StandardCharsets.UTF_8;
import static org.openqa.selenium.json.Json.MAP_TYPE;

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.function.Consumer;
import org.openqa.selenium.Beta;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.bidi.BiDi;
import org.openqa.selenium.bidi.HasBiDi;
import org.openqa.selenium.bidi.log.ConsoleLogEntry;
import org.openqa.selenium.bidi.log.JavascriptLogEntry;
import org.openqa.selenium.bidi.module.LogInspector;
import org.openqa.selenium.bidi.script.ChannelValue;
import org.openqa.selenium.bidi.script.EvaluateResult;
import org.openqa.selenium.bidi.script.EvaluateResultExceptionValue;
import org.openqa.selenium.bidi.script.EvaluateResultSuccess;
import org.openqa.selenium.bidi.script.LocalValue;
import org.openqa.selenium.bidi.script.RemoteValue;
import org.openqa.selenium.json.Json;

@Beta
class RemoteScript implements Script {

  private static final Json JSON = new Json();
  private final BiDi biDi;
  private final LogInspector logInspector;
  private final org.openqa.selenium.bidi.module.Script script;

  private final WebDriver driver;

  public RemoteScript(WebDriver driver) {
    this.driver = driver;
    this.biDi = ((HasBiDi) driver).getBiDi();
    this.logInspector = new LogInspector(driver);
    this.script = new org.openqa.selenium.bidi.module.Script(driver);
  }

  @Override
  public long addConsoleMessageHandler(Consumer consumer) {
    return this.logInspector.onConsoleEntry(consumer);
  }

  @Override
  public void removeConsoleMessageHandler(long id) {
    this.biDi.removeListener(id);
  }

  @Override
  public long addJavaScriptErrorHandler(Consumer consumer) {
    return this.logInspector.onJavaScriptException(consumer);
  }

  @Override
  public void removeJavaScriptErrorHandler(long id) {
    this.biDi.removeListener(id);
  }

  @Override
  public long addDomMutationHandler(Consumer consumer) {
    String scriptValue;
    try (InputStream stream =
        RemoteScript.class.getResourceAsStream(
            "/org/openqa/selenium/remote/bidi-mutation-listener.js")) {
      if (stream == null) {
        throw new IllegalStateException("Unable to find helper script");
      }
      scriptValue = new String(stream.readAllBytes(), UTF_8);
    } catch (IOException e) {
      throw new IllegalStateException("Unable to read helper script");
    }

    this.script.addPreloadScript(scriptValue, List.of(new ChannelValue("channel_name")));

    return this.script.onMessage(
        message -> {
          String value = message.getData().getValue().get().toString();

          Map values = JSON.toType(value, MAP_TYPE);
          String id = (String) values.get("target");

          List elements;

          synchronized (this) {
            elements =
                this.driver.findElements(
                    By.cssSelector(String.format("*[data-__webdriver_id='%s']", id)));
          }

          if (!elements.isEmpty()) {
            DomMutation event =
                new DomMutation(
                    elements.get(0),
                    String.valueOf(values.get("name")),
                    String.valueOf(values.get("value")),
                    String.valueOf(values.get("oldValue")));
            consumer.accept(event);
          }
        });
  }

  @Override
  public void removeDomMutationHandler(long id) {
    this.biDi.removeListener(id);
  }

  @Override
  public String pin(String script) {
    return this.script.addPreloadScript(script);
  }

  @Override
  public void unpin(String id) {
    this.script.removePreloadScript(id);
  }

  @Override
  public RemoteValue execute(String script, Object... args) {
    String browsingContextId = this.driver.getWindowHandle();

    List arguments = new ArrayList<>();

    Arrays.stream(args).forEach(arg -> arguments.add(LocalValue.getArgument(arg)));

    EvaluateResult result =
        this.script.callFunctionInBrowsingContext(
            browsingContextId,
            script,
            true,
            Optional.of(arguments),
            Optional.empty(),
            Optional.empty());

    if (result.getResultType().equals(EvaluateResult.Type.SUCCESS)) {
      return ((EvaluateResultSuccess) result).getResult();
    } else {
      throw new WebDriverException(
          "Error while executing script: "
              + ((EvaluateResultExceptionValue) result).getExceptionDetails().getText());
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy