Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i use not equal in selenium using java

eg

if(num!=""){ .... }

Now am getting errors,pls help me

share|improve this question
If you're using Java, and "num" is a string: if (!"".equals(num)) or if (!num.equals("")) - only use the second if you know "num" isn't null. Since what I'm telling you is straight Java (nothing to do with Selenium), I'm probably not answering your question correctly. If that's the case . . . sorry. – Todd R Apr 28 '11 at 12:31

closed as not a real question by Bill the Lizard Nov 17 '12 at 4:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

This is for integer comparison.

if(num != 2){..} //execute if block when num is not equal to 2

For String comparison see Todd R's comment above.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.