SlideShare ist ein Scribd-Unternehmen logo
1 von 10
Being good at waiting
Using Selenium to test Ajax-intensive pages
            Selenium Conference, April 2012



       Alexander Tarnowski
2
The DOM and asynchronicity – Challenges

 Existing elements may change values
 New elements may appear
 Not all Ajax calls have observable side effects




                                                   3
The naive approach doesn’t work

 It’s ugly
 Different loads on the target host make setting
 the correct interval difficult
 Time lost! Imagine 1000+ tests where each test
 spends 2 seconds sleeping...




                                                   4
Home-made wait

timeToWait = 10s
loop while timeToWait > 0
   if element is found then exit loop
   sleep
   decrease timeToWait
end loop




                                        5
Implicit waits
interface Timeouts {
    Timeouts implicitlyWait(long time, TimeUnit unit);
    Timeouts setScriptTimeout(long time, TimeUnit unit);
    Timeouts pageLoadTimeout(long time, TimeUnit unit);
}




                                                           6
Finders and timeout

findElement()
  Throws NoSuchElementException
  Respects implicit waits
findElements()
 Returns an empty collection
 Respects implicit waits




                                  7
WebDriverWait

new WebDriverWait(webDriver, 5).until(new ExpectedCondition<WebElement>() {
    public WebElement apply(WebDriver webDriver) {
        return webDriver.findElement(By.id("some id"));
    }
});




   Parameters: timeout, polling interval, ignored
   exceptions, error message
   Ignores exceptions by default




                                                                          8
Zero side effect validation
                 validate(invalid)


                     “invalid”
   C                                 S
DOML
   changes                           E
   I                                 R
                 validate(valid)
   E                                 V
   N                 “valid”         E
   T                                 R
 Nothing




                                         9
How to wait – Conclusion


  Method                           When
  Sleep                            Never
  Home-made sleep                  Once – and remove it
  Implicit waits                   When you really, really don’t
                                   care about Ajax
  WebDriverWait                    Whenever you can
  Poll an ”Ajax status” variable   When there are no observable
                                   side effects




                                                                   10

Weitere ähnliche Inhalte

Empfohlen

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Being good at waiting - Using Selenium to test Ajax-intensive pages

  • 1. Being good at waiting Using Selenium to test Ajax-intensive pages Selenium Conference, April 2012 Alexander Tarnowski
  • 2. 2
  • 3. The DOM and asynchronicity – Challenges Existing elements may change values New elements may appear Not all Ajax calls have observable side effects 3
  • 4. The naive approach doesn’t work It’s ugly Different loads on the target host make setting the correct interval difficult Time lost! Imagine 1000+ tests where each test spends 2 seconds sleeping... 4
  • 5. Home-made wait timeToWait = 10s loop while timeToWait > 0 if element is found then exit loop sleep decrease timeToWait end loop 5
  • 6. Implicit waits interface Timeouts { Timeouts implicitlyWait(long time, TimeUnit unit); Timeouts setScriptTimeout(long time, TimeUnit unit); Timeouts pageLoadTimeout(long time, TimeUnit unit); } 6
  • 7. Finders and timeout findElement() Throws NoSuchElementException Respects implicit waits findElements() Returns an empty collection Respects implicit waits 7
  • 8. WebDriverWait new WebDriverWait(webDriver, 5).until(new ExpectedCondition<WebElement>() { public WebElement apply(WebDriver webDriver) { return webDriver.findElement(By.id("some id")); } }); Parameters: timeout, polling interval, ignored exceptions, error message Ignores exceptions by default 8
  • 9. Zero side effect validation validate(invalid) “invalid” C S DOML changes E I R validate(valid) E V N “valid” E T R Nothing 9
  • 10. How to wait – Conclusion Method When Sleep Never Home-made sleep Once – and remove it Implicit waits When you really, really don’t care about Ajax WebDriverWait Whenever you can Poll an ”Ajax status” variable When there are no observable side effects 10

Hinweis der Redaktion

  1. http://stackoverflow.com/questions/7781792/selenium-waitforelement