创建在循环中添加国家/地区代码的测试

时间:2017-10-21 07:16:15

标签: java selenium-webdriver

我需要创建一个具有基本网址( https://www.horisen.com )的测试,并添加部分国家/地区代码(即 https://www.horisen.com/se )。对我来说问题是有12个国家需要改变。 我尝试创建 if 循环但没有成功。 因此,总而言之,我必须通过所有12种不同的语言,用当前语言打开这些页面,然后继续使用下一个语言。我想我需要一个由12个国家代码组成的数组,并在一个循环中调用它,但不知道如何取消它。 提前谢谢

String url = htps://www.horisen.com/
int[] array;

array = new int[6];

array[0] = de;
array[1] = se;
array[2] = dk;
array[3] = fr;
array[4] = en;
array[5] = fi;

for(int i=0; i++) {
do not know how to add after string url country code on the ned
}

1 个答案:

答案 0 :(得分:1)

下次,请在您的示例中添加一些实际的java代码(编译)。也许你正在寻找这样的东西:

    String url = "https://www.horisen.com/";
    String[] countryCodes = {"de", "se", "dk", "fr", "en", "fi"};
    for (String countryCode : countryCodes) {
        String countryUrl = url + countryCode;
        System.out.println(countryUrl);
    }