English 中文(简体)
在一栏中搜索数据时,在Junit和Selenium中造成错误
原标题:For loop causing error in Junit with Selenium while searching data in a column
  • 时间:2011-07-13 13:04:55
  •  标签:
  • java

i m 在我下面的主食中出现错误

    for(int i=9;i<=58;i++)
    {
    x = selenium.getTable("//table[4].".i.".6");
    if(x == "single" || x = "OneToMany")
        {   
            found="true";
        }
        else 
        break;
        }

can someone solve my problem where i m going wrong Thanks in advance

最佳回答

该法典是否真的是 Java?

正如@matt-ball已经说过的,而不是相反的。

if(x == "single" || x = "OneToMany")

应当

if ("single".equals(x) || "OneToMany".equals(x))

注:在 Java,您不应将“Sting”与=进行比较,而应使用 Equals(<>/code>。

下面的法典对我来说也是奇怪的:

x = selenium.getTable("//table[4].".i.".6");

Is this string concatenation? It looks like PHP code. A think in Java this 应当 like this:

x = selenium.getTable("//table[4]." + i + ".6");

x = selenium.getTable("//table[4]." + String.valueOf(i) + ".6");

x = selenium.getTable(String.f或mat("//table[4].%d.6", i);
问题回答

或许是因为你重新指定了<代码>x

x = "OneToMany"




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签