web-dev-qa-db-ja.com

Selenium WebDriverでJavaScriptを使用する方法Java

Javaを使用してWebDriver(Selenium 2)でJavaScriptを使用したい。

私はいくつかのガイドに従い、 Getting Startedページ :で実行する命令が1行目にあります:

$ ./go webdriverjs

私の質問:上記のコマンドはどのフォルダー/場所から実行/実行されますか?

42
Ripon Al Wasim

これまでの質問に基づいて、JavaのWebDriverからJavaScriptスニペットを実行するとします。私が間違っている場合は修正してください。

WebDriverJsは、実際には別のWebDriver言語バインディングです(テストはJava、C#、Ruby、Python、JS、およびおそらく現在のさらに多くの言語で記述できます)。これは特にJavaScriptであるため、JavaScriptでテストを記述できます。

Java WebDriverでJavaScriptコードを実行する場合は、代わりにこれを実行します。

WebDriver driver = new AnyDriverYouWant();
if (driver instanceof JavascriptExecutor) {
    ((JavascriptExecutor)driver).executeScript("yourScript();");
} else {
    throw new IllegalStateException("This driver does not support JavaScript!");
}

私もこれをするのが好きです:

WebDriver driver = new AnyDriverYouWant();
JavascriptExecutor js;
if (driver instanceof JavascriptExecutor) {
    js = (JavascriptExecutor)driver;
} // else throw...

// later on...
js.executeScript("return document.getElementById('someId');");

これに関する詳細なドキュメントは ここではドキュメント内 、またはできれば JavascriptExecutorのJavaDocs内 にあります。

executeScript()も関数呼び出しと生のJSを取ります。 returnから値を取得でき、複雑な引数を多数渡すことができます。ランダムな例をいくつか示します。

  1. // returns the right WebElement
    // it's the same as driver.findElement(By.id("someId"))
    js.executeScript("return document.getElementById('someId');");
    
  2. // draws a border around WebElement
    WebElement element = driver.findElement(By.anything("tada"));
    js.executeScript("arguments[0].style.border='3px solid red'", element);
    
  3. // changes all input elements on the page to radio buttons
    js.executeScript(
            "var inputs = document.getElementsByTagName('input');" +
            "for(var i = 0; i < inputs.length; i++) { " +
            "    inputs[i].type = 'radio';" +
            "}" );
    
115
Petr Janeček

Selenium WebDriverを使用したJavaScript

Seleniumは、最も人気のある自動テストスイートの1つです。 Seleniumは、Webベースのアプリケーションと幅広いブラウザーとプラットフォームの機能面の自動化テストをサポートおよび促進する方法で設計されています。

    public static WebDriver driver;
    public static void main(String[] args) {
        driver = new FirefoxDriver(); // This opens a window    
        String url = "----";


        /*driver.findElement(By.id("username")).sendKeys("yashwanth.m");
        driver.findElement(By.name("j_password")).sendKeys("yashwanth@123");*/

        JavascriptExecutor jse = (JavascriptExecutor) driver;       
        if (jse instanceof WebDriver) {
            //Launching the browser application
            jse.executeScript("window.location = \'"+url+"\'");
jse.executeScript("document.getElementById('username').value = \"yash\";");
// Tag having name then
driver.findElement(By.xpath(".//input[@name='j_password']")).sendKeys("admin");


//Opend Site and click on some links. then you can apply go(-1)--> back  forword(-1)--> front.
//Refresheing the web-site. driver.navigate().refresh();            
jse.executeScript("window.history.go(0)");
            jse.executeScript("window.history.go(-2)");
            jse.executeScript("window.history.forward(-2)");

            String title = (String)jse.executeScript("return document.title");
            System.out.println(" Title Of site : "+title);

            String domain = (String)jse.executeScript("return document.domain");
            System.out.println("Web Site Domain-Name : "+domain);

            // To get all NodeList[1052] document.querySelectorAll('*');  or document.all
            jse.executeAsyncScript("document.getElementsByTagName('*')");

            String error=(String) jse.executeScript("return window.jsErrors");
            System.out.println("Windowerrors  :   "+error);



            System.out.println("To Find the input tag position from top"); 
            ArrayList<?> al =  (ArrayList<?>) jse.executeScript(
                    "var source = [];"+
                    "var inputs = document.getElementsByTagName('input');"+
                    "for(var i = 0; i < inputs.length; i++) { " +
                       "   source[i] = inputs[i].offsetParent.offsetTop" +      //"    inputs[i].type = 'radio';"
                    "}"+
                    "return source"                 
                    );//inputs[i].offsetParent.offsetTop     inputs[i].type

            System.out.println("next");
            System.out.println("array : "+al);

            // (CTRL + a) to access keyboard keys. org.openqa.Selenium.Keys 
            Keys k = null;
            String selectAll = Keys.chord(Keys.CONTROL, "a");
            WebElement body = driver.findElement(By.tagName("body"));
            body.sendKeys(selectAll);

            // Search for text in Site. Gets all ViewSource content and checks their.
            if (driver.getPageSource().contains("login")) {
                System.out.println("Text present in Web Site");
            }

        Long clent_height = (Long) jse.executeScript("return document.body.clientHeight");
        System.out.println("Client Body Height : "+clent_height);

        // using Selenium we con only execute script but not JS-functions.

    }
    driver.quit(); // to close browser
}

ユーザー関数を実行し、JSをファイルに書き込み、Stringとして読み取り、実行して簡単に使用できるようにします。

Scanner sc = new Scanner(new FileInputStream(new File("JsFile.txt")));
        String js_TxtFile = ""; 
            while (sc.hasNext()) {          
                String[] s = sc.next().split("\r\n");   
                for (int i = 0; i < s.length; i++) {
                    js_TxtFile += s[i];
                    js_TxtFile += " ";
                }           
            }
        String title =  (String) jse.executeScript(js_TxtFile);
        System.out.println("Title  : "+title);

document.title&document.getElementById()は、ブラウザで使用可能なプロパティ/メソッドです。

JsFile.txt

var title = getTitle();
return title;

function getTitle() {
    return document.title;
}
4
Yash

メソッド呼び出しにパラメーターを追加する方法がわかりませんでした。見つけるのに時間がかかったので、ここに追加します。 (javascript関数に)パラメーターを渡す方法、パラメーターの場所として「arguments [0]」を使用し、executeScript関数の入力パラメーターとしてパラメーターを設定します。

    driver.executeScript("function(arguments[0]);","parameter to send in");
1
David Marciel

JavaScriptでクリックしてみることもできます。

WebElement button = driver.findElement(By.id("someid"));
JavascriptExecutor jse = (JavascriptExecutor)driver;
jse.executeScript("arguments[0].click();", button);

また、jqueryを使用できます。最悪の場合、頑固なページでは、カスタムEXEアプリケーションによるクリックが必要になる場合があります。しかし、最初に明らかな解決策を試してください。

1
Lukasz

Javascript executorを使用して任意の要素のテキストを読みたい場合、次のようなコードを実行できます。

WebElement ele = driver.findElement(By.xpath("//div[@class='infaCompositeViewTitle']"));
String assets = (String) js.executeScript("return arguments[0].getElementsByTagName('span')[1].textContent;", ele);

この例では、次のHTMLフラグメントがあり、「156」を読んでいます。

<div class="infaCompositeViewTitle">
   <span>All Assets</span>
   <span>156</span>
</div>
0
muhdchoaib