Test dynamically loaded content with Selenium Web Driver

前端 未结 3 1369
不思量自难忘°
不思量自难忘° 2021-01-12 13:41

I am working on a system that has a web based frontend that I am testing with Selenium. On one page the content is dynamically loaded when scrolling down (maybe you know tha

3条回答
  •  余生分开走
    2021-01-12 14:08

    I think the problem is waiting for the dynamic content to finish loading. Try to wait 3 seconds just before findElementsBy? In C# the code would be Thread.Sleep(3000);

提交回复
热议问题