Skip to content

Commit 601e151

Browse files
authored
Merge branch 'trunk' into sauce_dev_partner
2 parents c701428 + 8eca186 commit 601e151

File tree

2 files changed

+36
-13
lines changed

2 files changed

+36
-13
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: "Celebrating a Milestone: BrowserStack Becomes Selenium's Development Partner"
3+
linkTitle: "Celebrating a Milestone: BrowserStack Becomes Selenium's Development Partner"
4+
date: 2024-07-02
5+
tags: ["selenium"]
6+
categories: ["general"]
7+
author: David Burns [@automatedtester](https://www.linkedin.com/in/theautomatedtester/)
8+
description: >
9+
Selenium is proud to annouce that we have created a new tier to show the appreciation of the companies that support us.
10+
---
11+
12+
It has been a great year for the Selenium community as it continues to grow. The popularity of Selenium’s Python Bindings is evident from the discussions at the Selenium Conference and on LinkedIn, while the Java bindings have impressively surpassed 100 million downloads.
13+
14+
This project, having reached 20 years old this year, would not be possible without the amazing contributions from our volunteer contributors and the Open Source Program Offices of companies like BrowserStack that allow us to work on this project as part of our day jobs.
15+
16+
**About BrowserStack**
17+
They have over 50,000 organizations and 6M users using their end-to-end testing platform. BrowserStack has been one of the Selenium project's biggest supporters for years and currently employs several of Selenium's core maintainers, donating a significant portion of their time towards the development, maintenance, support, and leadership of open-source Selenium repos.
18+
19+
This dedicated support has allowed us to continue work on the client bindings, especially the work going into WebDriver BiDi, support our community, continuously improve our documentation, and maintain all the extra projects we oversee, ensuring Selenium can continue to thrive for the next 20 years.
20+
We are also thrilled to highlight the collaborative efforts between the BrowserStack team, the Google Chrome team, Microsoft, Apple, SauceLabs, and the Firefox team, who have come together to build Selenium WebDriver BiDi, the next generation of Selenium. This collaborative spirit embodies our dedication to enhancing the testing experience for the Selenium user community.
21+
With this in mind, the Selenium Project now shows our appreciation to BrowserStack for their years of continued support by creating a new sponsorship tier called the Development Partner.
22+
We are deeply indebted to BrowserStack for all their support and are proud to recognize them as our first official Development Partner. This work has allowed us to continue progress on the client bindings, especially the work going into WebDriver BiDi, support our community, continuously improve our documentation, and maintain all the extra projects we oversee, so Selenium can continue to be around for the next 20 years!
23+

website_and_docs/content/documentation/webdriver/support_features/expected_conditions.zh-cn.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
2-
title: "Waiting with Expected Conditions"
3-
linkTitle: "Expected Conditions"
2+
title: "期望状态的等待"
3+
linkTitle: "期望状态"
44
weight: 1
55
description: >
6-
These are classes used to describe what needs to be waited for.
6+
本文档描述了一系列类, 这些类用于明确指定在测试中需要等待的各种条件.
77
---
88

9-
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
10-
Instead of defining the block of code to be executed with a _lambda_, an expected
11-
conditions method can be created to represent common things that get waited on. Some
12-
methods take locators as arguments, others take elements as arguments.
9+
期望状态与 [显示等待]({{< ref "../waits#explicit-waits" >}}) 一起使用.
10+
与其定义要使用 _lambda_ 执行的代码块,
11+
不如使用 _lambda_ 执行可以创建 Conditions 方法来表示等待的常见事物.
12+
有些方法将定位器作为参数, 有些方法将元素作为参数.
1313

14-
These methods can include conditions such as:
14+
这些方法可以包括以下条件:
1515

16-
* element exists
17-
* element is stale
18-
* element is visible
19-
* text is visible
20-
* title contains specified value
16+
* 元素存在
17+
* 元素已过期
18+
* 元素可见
19+
* 文本可见
20+
* 标题包含特定值
2121

2222
{{< tabpane text=true >}}
2323
{{% tab header="Java" %}}

0 commit comments

Comments
 (0)