私はFacebookへのログインを自動化しようとしています。私はクロムドライバとIEドライバにセレンを接続しようとしました。しかし、コードを実行すると、com.google.common.base.Functionの例外が見つかりません。私はそれをGoogleにしようとし、com.googleのjarファイルをダウンロードし、Eclipseに追加されました。しかし、私はここのコードでこの行AutomationNがセレンを使用してページにログインしているときにClassNotFoundExceptionが発生しました
WebDriver wd=new InternetExplorerDriver();
にIllegalStatementExceptionを取得します。
package com.automate;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
public class ConnectToUrl {
public static void main(String agrs[]){
WebDriver wd=new InternetExplorerDriver();
wd.get("https://accounts.google.com/ServiceLogin");
wd.findElement(By.id("email")).sendKeys("Email");
wd.findElement(By.id("pass")).sendKeys("password");
wd.findElement(By.id("u_0_l")).click();
}
}
エラーとその解決方法を教えてください。
:
違法文の例外として、あなたはこの質問を参照する必要があります) ' –
ここでIEdriverserver.exeを見つけることができますか? –
[このURL](http://www.seleniumhq.org/download/)にアクセスし、最新のものをダウンロードしてください。あなたのOSに合ったIEdriverServer ... :) –