1

For example if u go to Tags page on stack you can start typing tag and when you type more letters the result of search is change. I want to get all elements of my search, e.g. when I type all tags letters. It is possibile with Selenium? Or i need to use JS?

slovvic
  • 417
  • 3
  • 6
  • 14
  • 1
    Possible duplicate of [Test dynamically loaded content with Selenium Web Driver](http://stackoverflow.com/questions/12692172/test-dynamically-loaded-content-with-selenium-web-driver) – Tanmay Baid Nov 12 '16 at 00:45
  • 1
    Please read [ask]. Please provide the code you have tried and the execution result including any error messages, etc. Also provide a link to the page and/or the relevant HTML. – JeffC Nov 12 '16 at 02:17

1 Answers1

0

You can do it with Selenium. As you type or make other user actions, the HTML is changing and you can capture an element when it appears. In this case it's recommended to use 'FluentWait' when searching or interacting with an element.

Moshisho
  • 2,781
  • 1
  • 23
  • 39