0

私は Selenide を初めて使用し、Selenide と Junit の依存関係を使用してブラウザーを実行しようとしています。しかし、私は

SLF4J: クラス "org.slf4j.impl.StaticLoggerBinder" の読み込みに失敗しました。

xmlns="http://maven.apache.org/POM/4.0.0"

     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>1</groupId>
<artifactId>1</artifactId>
<version>1.0-SNAPSHOT</version>

<!-- https://mvnrepository.com/artifact/com.codeborne/selenide -->
<dependencies>
<dependency>
    <groupId>com.codeborne</groupId>
    <artifactId>selenide</artifactId>
    <version>4.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-nop -->

import com.codeborne.selenide.Configuration;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static com.codeborne.selenide.Selenide.close;
import static com.codeborne.selenide.Selenide.open;

public class ChromeStart {
    @Before
    public void RunURL() {
        Configuration.browser= "chrome";
        open ("http://google.com");
    }
    @Test
    public void StartBrowser() {
        System.out.println("Hello world")
    }
    @After
    public void CloseURL(){
        close();
    }
}
4

1 に答える 1

3

ほとんどの場合、このエラーは依存関係の欠落が原因です。次の依存関係を pom.xml ファイルに追加して、テストを再度実行してみてください。

<dependency>
  <groupId>org.slf4j</groupId>
  <artifactId>slf4jnop</artifactId>
  <version>1.7.21</version>
</dependency>
于 2016-12-14T21:03:36.303 に答える