Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all,
Vanilla are planning an update to the site on April 24th (next Wednesday). It is a major PHP8 update which is expected to boost performance across the site. The site will be down from 7pm and it is expected to take about an hour to complete. We appreciate your patience during the update.
Thanks all.

Selenium Webdriver for Java, find element and continue using

Options
  • 10-07-2017 10:20am
    #1
    Registered Users Posts: 5,531 ✭✭✭


    Hi, im doing a test that finds an element. However the page changes at times. How would you attempt to continue using that element?
    Tagged:


Comments

  • Registered Users Posts: 1,298 ✭✭✭nullObjects


    Can you post some of the code for how the element appears on the webpage?
    For instance is it that the id of the object changes or just the value?

    You could write an object description using xpath that targets the element relative to another element.
    Just be aware that depending on how you write the xpath it might be brittle


  • Registered Users Posts: 1,711 ✭✭✭Hrududu


    If part of the id is dynamic you can wildcard it out. Just make sure that the id is still unique. You can update your selector to be basically: id starts with...id ends with

    If you google you'll get the exact syntax


Advertisement