gpt4 book ai didi

java - equals 在 for 循环内部不起作用

转载 作者:行者123 更新时间:2023-11-30 06:03:26 25 4
gpt4 key购买 nike

这是我的一个客户端应用程序的副本。我想测试负面场景,例如我给出的值不应在下拉列表中可用。我将采用断言功能的 j 值。如果j值不为1,则我给出的值不在下拉列表中。

对于下面的程序,我期望 j 值为 1,但它仅显示 0。为什么 iqual 忽略大小写在 for 循环内部不起作用,但在 for 循环外部起作用。我什至列出了 forloop 内的所有值,它具有“May”值。

是否有任何简单的脚本来检查我给出的值不在下拉列表中?

package Facebook;

import java.util.List;

import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;
import org.testng.annotations.Test;

public class Login2 {

@Test
public void Login() throws InterruptedException {
System.setProperty("webdriver.chrome.driver",
"D:\\Besent Technology\\Drivers\\chromedriver_win32_2.34\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://www.facebook.com/");

List<WebElement> monthlist = driver.findElements(By.id("month"));

String month = "May";
String mon = "May";
int i = 0;
int j = 0;

if (mon.equals(month)) {
System.out.println(mon + " project should be selected");
i++;
}

for (WebElement ele : monthlist) {
String fbmonth = ele.getText().trim();
System.out.println(ele.getText());
if (fbmonth.equals(month)) {
System.out.println(fbmonth + " project is displaying");
j++;
} else {
continue;
}

}
System.out.println("print i value: " + i);
System.out.println("print j value: " + j);

}
}

输出

        [RemoteTestNG] detected TestNG version 6.14.2
Starting ChromeDriver 2.34.522940 (1a76f96f66e3ca7b8e57d503b4dd3bccfba87af1) on port 3885
Only local connections are allowed.
Aug 13, 2018 7:18:16 PM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: OSS
May project should be selected
Month
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sept
Oct
Nov
Dec
print i value: 1
print j value: 0
PASSED: Login

===============================================
Default test
Tests run: 1, Failures: 0, Skips: 0
===============================================


===============================================
Default suite
Total tests run: 1, Failures: 0, Skips: 0
===============================================

最佳答案

enter image description here好的,我通过运行您编写的测试找到了答案,这是由于您的变量 fbmonth 不返回月份为 Jan、Feb 个人,事实上它返回 fbmonth 等于“Month\nJan”\n二月\n三月\n四月\n五月\n六月\n七月\n八月\n九月\n十月\n十一月\n十二月"

你需要打破/分割它并迭代以获得你想要的。 更新使用它来迭代:

for (WebElement ele : monthlist) {
System.out.println(ele.getText());
String[] fbmonth = ele.getText().trim().split("\n");
for(j=0;j<fbmonth.length;j++) {
System.out.println("fbmonth" +j +"="+ fbmonth[j] );
if (fbmonth[j].equals(month)) {
System.out.println(fbmonth[j] + " project is displaying");

}
}



}

关于java - equals 在 for 循环内部不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51824152/

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