繁体   English   中英

C# 相当于 Java 等待

[英]C# equivalent of Java awaitility

我想将 Java 中的内容复制到 C#。

我不是在寻找,或任何涉及司机的东西:

WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));

我正在使用http://www.awaitility.org/

这是代码:

public static void waitForElement(WebElement element) {

    with()
            .pollDelay(100, TimeUnit.MICROSECONDS)
            .and()
            .pollInterval(200, TimeUnit.MICROSECONDS)
            .await()
            .ignoreExceptions()
            .until(() -> element.isDisplayed());
}

谢谢

我会做类似的事情

public static async Task WaitForElementAsync(WebElement element)
{
    await With(100, 200, true, () => element.isDisplayed());
}

private static async Task With(
    int pollDeley,
    int pollIntervall,
    bool ignoreException,
    Func<bool> until)
{
    await Task.Delay(pollDeley);

    var loop = true;

    while (loop)
    {
        try
        {
            loop = !until();
            if (!loop) break;
            await Task.Delay(pollIntervall);
        }
        catch (Exception ex)
        {
            if (!ignoreException) throw;
        }
    }
}

但如果WebElement有类似IsDisplayedChanged的事件,可能会有更好的解决方案。

此外,使用此解决方案,您还可以在项目中引入异步调用行(在 web 上下文中可能会有所帮助),为避免这种情况,您可以将await Task.Delay(...)替换为Thread.Sleep(...)

另一种解决方案是使用计时器进行轮询

private static async Task With(
    int pollDeley,
    int pollIntervall,
    bool ignoreException,
    Func<bool> until)
{
    await Task.Delay(pollDeley);

    var tcs = new TaskCompletionSource<bool>();

    using (var timer = new Timer(pollIntervall))
    {
        void Poll(object sender, ElapsedEventArgs e)
        {
            try
            {
                if (until())
                {
                    if (tcs.TrySetResult(true))
                    {
                        timer.Stop();
                    }
                }
            }
            catch (Exception ex)
            {
                if (!ignoreException)
                {
                    if (tcs.TrySetException(ex))
                    {
                        timer.Stop();
                    }
                }
            }
        }

        timer.Elapsed += Poll;

        timer.Start();

        await tcs.Task;

        timer.Elapsed -= Poll;
    }
}

我想将我在 Java 中的内容复制到 C#。

我不是在寻找,或者任何会涉及到司机的东西:

WebDriverWait 等待 = 新 WebDriverWait(驱动程序,TimeSpan.FromSeconds(10));

我正在使用http://www.awaitility.org/

这是代码:

public static void waitForElement(WebElement element) {

    with()
            .pollDelay(100, TimeUnit.MICROSECONDS)
            .and()
            .pollInterval(200, TimeUnit.MICROSECONDS)
            .await()
            .ignoreExceptions()
            .until(() -> element.isDisplayed());
}

谢谢

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM