3

SeleniumWebdriverでAJAXを処理する方法について読んでいます。解決策はたくさんあります。最善かつ正しい解決策はありますか?

私がこれまで読んだ解決策は次のとおりです。

1)スレッドスリープの使用2)waitForメソッド3)ExpectedCondition 4)FluentWait 5)PresenceOfElementLocated

ありがとう!

4

4 に答える 4

0

私はこれを使用しましたが、それ自体は正常に動作するのを待ちます。

driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);

試していただきありがとうございます。

于 2012-06-19T09:06:07.757 に答える
0

(私の場合に使用されているように)ajaxコンポーネントを処理するための信頼できる解決策は、webdriverのwaitUntil()API呼び出しを使用して、要素がページに表示されるのを待つことです。

それ以外の場合、threadsleep() のようなソリューションは、Ajax の処理にはまったく推奨されません。

于 2012-05-30T04:18:43.720 に答える
-1

テストから make ajax リクエストを実行したい場合は、Apache Http Client を試すことをお勧めします。これを行うGroovyコードを次に示します。Groovy を使用している可能性は高くありませんが、これはクライアントでの一般的な Get & Post に関する有益な情報であるはずです。

import groovy.util.Expando
import org.apache.commons.httpclient.HttpClient
import org.apache.commons.httpclient.HttpStatus
import org.apache.commons.httpclient.methods.PostMethod
import org.apache.commons.httpclient.methods.GetMethod
import java.io.BufferedReader
import java.io.InputStreamReader
import org.apache.commons.httpclient.Header
import java.net.URLDecoder
import com.auto.utils.crypto.Crypto

class ClientHttps {
private HttpClient client = null
private BufferedReader br = null
private String cookieString = ""
private crypto = new Crypto()
def log
public ClientHttps(log) {
    this.log = log
    client = new HttpClient();
    client.getParams().setParameter("http.useragent", "Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2")
}
public Expando get(String url) {
    def startTime = System.nanoTime()
    GetMethod method = new GetMethod(url)
    Expando returnData = new Expando()
    try {
        log.info("cookieString = " + cookieString)
        method.addRequestHeader("Cookie", cookieString)
        method.addRequestHeader("Accept", "application/json")
        int returnCode = client.executeMethod(method)
        log.info("returnCode = " + returnCode)
        if (returnCode == HttpStatus.SC_NOT_IMPLEMENTED) {
            log.error("The Get method is not implemented by this URI")
        } else {
            if ((returnCode != HttpStatus.SC_OK) && (returnCode != HttpStatus.SC_MOVED_PERMANENTLY))
                assert false, "Bad Response Code"
            br = new BufferedReader(new InputStreamReader(method.getResponseBodyAsStream()))
            String readLine;
            while(((readLine = br.readLine()) != null)) {
                log.info(readLine)
            }
            Header [] respHeaders = method.getResponseHeaders()
            respHeaders.each () {
                log.info(it.getName() + " = " + it.getValue())
                returnData.setProperty(it.getName(), it.getValue())
            }
        }
        def endTime = System.nanoTime()
        def duration = endTime - startTime;
        def seconds = (double)duration / 1000000000.0;
        log.info("Get took = " + seconds + " seconds (Get url = " + url + ")")
        return returnData;
    } catch (Exception e) {
        log.error(e.message, e)
        return null
    } finally {
        method.releaseConnection()
        if(br != null) try {
            br.close()
        } catch (Exception fe) {
            log.info(fe.message, fe)
        }
    }
}
public Expando post(Expando postData) {
    def startTime = System.nanoTime()
    PostMethod method = new PostMethod(postData.getProperty("url"))
    postData.getProperty("params").each() {method.addParameter(it.key, it.value)}
    Expando returnData = new Expando()
    try {
        int returnCode = client.executeMethod(method)
        log.info(returnCode)
        if(returnCode == HttpStatus.SC_NOT_IMPLEMENTED) {
            log.error("The Post method is not implemented by this URI")
        } else {
            if ((returnCode != HttpStatus.SC_OK) && (returnCode != HttpStatus.SC_MOVED_TEMPORARILY))
                assert false, "Bad Response Code"
            br = new BufferedReader(new InputStreamReader(method.getResponseBodyAsStream()))
            String readLine
            while(((readLine = br.readLine()) != null)) {
                log.info("Response Data = " + readLine)
            }
            Header [] respHeaders = method.getResponseHeaders()
            respHeaders.each () {
                log.info(it.getName() + " = " + it.getValue())
                try {
                    returnData.setProperty(it.value.split("=")[0], it.value.split("=")[1])
                }
                catch (Exception exc) {
                    log.info("Could not split on equals sign = " + it.value)
                }
            }
        }
        def endTime = System.nanoTime()
        def duration = endTime - startTime;
        def seconds = (double)duration / 1000000000.0;
        log.info("Post took = " + seconds + " seconds (Post url = " + postData.getProperty("url") + ")")
        return returnData
    } catch (Exception exc) {
        log.info(exc.message, exc)
        return null
    } finally {
        method.releaseConnection()
        if(br != null) try {
            br.close()
        } catch (Exception fe) {
            log.info(fe.message, fe)
        }
    }
}
}
于 2012-06-04T14:11:24.697 に答える