Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5949245
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T17:13:17+00:00 2026-05-22T17:13:17+00:00

I use the code driver.findElement(By.name(username)).sendKeys(name); driver.findElement(By.name(password)).sendKeys(12345); to login to a website. Sometimes it will

  • 0

I use the code

driver.findElement(By.name("username")).sendKeys("name");
driver.findElement(By.name("password")).sendKeys("12345");

to login to a website. Sometimes it will work, sometimes it won’t, the error given is

Exception in thread “main”
org.openqa.selenium.NoSuchElementException:
Unable to locate element:
{“method”:”name”,”selector”:”username”}

The problem is that sometimes it will work. Should I perhaps use Byxpath()?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T17:13:18+00:00Added an answer on May 22, 2026 at 5:13 pm

    You can use WebDriverWait with conditions to wait for Elements:

    public class MyTestClass{
    
        private static final int MAX_WAIT_TIME_SEC = 60;
        private WebDriverWait wait;
        [...]
    
        public void setField(String fieldname, String text){
            wait = new WebDriverWait(driver, MAX_WAIT_TIME_SEC);
            wait.until(new NameExpectedCondition(xpath));
            WebElement element = driver.findElement(By.name(fieldname));
            if(element != null){
                element.sendKeys(text);
            }
            [...]
        }
    
        public void foo()
    }
    

    With NameExpectedCondition:

    import org.openqa.selenium.By;
    
    public class NameExpectedCondition implements ExpectedCondition<Boolean> {
    
    private String fieldName;
    
    public NameExpectedCondition(String fieldName)
    {
        this.fieldName= fieldName;
    }
    
    public Boolean apply(WebDriver d) {
        d.findElement(By.Name(fieldName));
        return Boolean.TRUE;
    }
    

    }

    Please make also sure you’re searching for the element in the correct frame.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use printf in driver code (DDK), therefore I've included stdio.h. But
I use the following code to layout network drives on a system. I want
Do you use code-generation tools (aside from those used to generate proxies and from
I want to use code beside files for my views in my ASP.NET MVC
Why cant i use code nuggets to set a control property??For example a validationgroup
I'm attempting to use code I've found that uses Win32. However, I'm getting this
how does one use code to do this: produce 15 random numbers [EDIT: from
Normally I create web application projects and use code-behind, but I have a requirement
I am wondering if it is possible to use Code Access Security, and a
There are some fairly powerful tools like SIMBL or Airfoil/Instant Hijack which use code

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.