gpt4 book ai didi

java - 如何在selenium java中识别 'mat-calendar-body-cell'?

转载 作者:太空宇宙 更新时间:2023-11-04 10:46:13 24 4
gpt4 key购买 nike

基本上,UI 代码是用 Angular 编写的,我使用 selenium java 进行自动化。我在识别日历的元素时遇到困难。下面是示例代码。请让我知道如何访问日期。

enter image description here

最佳答案

尝试使用以下 CSS 定位器来使用 aria-label 属性识别特定日期:

By.cssSelector("td[aria-label='Jan 1, 2018']") // (or any date that you want to identify)

如果您想要特定日期的 div 元素:

By.cssSelector("td[aria-label='Jan 1, 2018']>div") // (or any date that you want to identify)

您可以参数化日期值以使其更加通用:

public void selectDate(String date)
By.cssSelector("td[aria-label='" + date + "']") // using string concatenation. you can do Stirng.format method for better readability.

关于java - 如何在selenium java中识别 'mat-calendar-body-cell'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48392531/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com