Skip to content
Advertisement

Selenium and Java: How do I get all of the text after a WebElement

I am coding a program in Java using WebDriver and am having a little bit of trouble getting the text after the select webElement.

The HTML code for the part of the website that I want is as follows:

JavaScript

The textbox class codes for a search bar and a drop down bar of languages

My Java code is currently able to open chrome using the chrome driver and is able to type into the search bar. I am however not able to get the text that results from the entry.

Image

In the image here, I entered “avoir” into the search bar, and I want all of the text inside the boxes after which do not seem to have any id’s or names to be used inside the xpath.

Can someone please help me in finding how to get and save the text from those fields after the dropdown language menu?

Thank you in advance!

The code I have so far:

JavaScript

}

Advertisement

Answer

I have specified three approaches to extract the text from the result box. Please check all the approaches and use the required approach.

  1. If you want to extract all the text, then you can find the element of the result box and then you can get the Text from that.

    JavaScript
  2. If you want to extract the Text based on the Section by section, then you can go with the below approach,

    JavaScript
  3. If you want to extract the text from specific section, then you can do with the below approach

    JavaScript

Edit: To address followup question

I would suggest to use some explicit wait after doing some action which resulting in some element rendering. In your code, after doing some modification, I am getting the result as expected.

  1. In openTestSite method, I have just added the explicit wait to ensure the page load after loading the URL
  2. In enter method, actually you are getting the autocomplete suggestion after entering the query value .So, we need to just select the value from the autocomplete.
  3. In getText method, Search result is taking more time.So, we need to add some explicit wait using any one of the dynamically loading element locator.

Code:

openTestSite Method:

JavaScript

enter Method:

JavaScript

getText Method:

JavaScript

I have tested with the above modified code and it is working fine.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement