Selenium 4 Relative Locator and Testing

Home Forums Software Testing Discussions Selenium 4 Relative Locator and Testing

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #23762
    Abhay
    Participant
    @abhayit2000

    How can Selenium 4 relative locator change the way of testing?

    #23854
    jasonbunting
    Participant
    @jasonbunting

    When a web page element must be selected, but the element IDs are not consistent.

    If the changing element to be selected is always above an element with fixed parameters, it can be selected as the element above the fixed element, for example.

    That way, no matter what the changing elements ID’s are, the changes will not prevent the element from being selected.

    #23984
    Asiq Ahamed
    Participant
    @asiq-ahamed

    Selenium 4 Relative locator comes with the below methods.

    withTagName
    above
    below
    toLeftOf
    toRightOf
    near
    If you know XPath locating techniques very well, then Relative Locator does not add any value. However, the “near” method is a good value add.

    You can also find an element with pixel distance from another element.

    Thanks,
    Asiq Ahamed
    Test Automation Architect at Codoid

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.