SlideShare une entreprise Scribd logo
1  sur  108
Télécharger pour lire hors ligne
Sleeping is
your best
friend in
automation!
NOT
Michelle Macdonald
Pronto Software Limited
Selenium Automation
5+ years later...
Selenium
Appium
Stay Awake?
http://theideas.wikia.com/wiki/SpongeBob_SquarePants_(character)
Though sleep is called
our best friend, it is a
friend who often keeps
us waiting!~
Jules Verne
What sleeps
for 20 hours
a day?
Photo: Rachel Newton
What sleeps for
10 seconds
before logging
on?


browser = webdriver.Firefox()

browser.get(url) 

time.sleep(10)

user_name.send_keys("username")

pass_word.send_keys("password")

login_button.click()

random script
40 WIDE AWAKE
MINUTES
LATER ...
Pineapple
Wisdom!
http://theideas.wikia.com/wiki/SpongeBob_SquarePants_(character)
✦ Sleep = Friend?
✦ Community ?
✦ Why? Only human!
✦ New Attitudes
✦ Convenient examples
✦ Sleep Challenges
Sleep
Pause
Timeout
Delay
Suspend
What does the
selenium
community say?
Sleeps don’t
make our tests
run as quickly
as possible!
https://github.com/AutomatedTester
Burns
Dave Haeffner's
Proven Method to Grading
Selenium Tests
Hard Coded
Sleep?
Deduct -5
points.
https://i.ytimg.com/vi/NvGkclsL7rA/maxresdefault.jpg
Haeffner
Thread.sleep is the
case of an
explicit wait
https://www.seleniumhq.org/docs/04_webdriver_advanced.jsp#explicit-and-implicit-waits
worst
SEVERAL
SLEEP SLASHING
MINUTES LATER...
Unreliable
http://getdrawings.com/cliparts/squidward-clipart-29.png
Inefficient
http://spongebob.wikia.com/wiki/File:Im_thmart.png
Inaccurate
http://spongebob.wikia.com/wiki/File:Squidward_Tentacles_(1).png


Thread.sleep(2000)

EXTERMINATE!
http://spongebob.wikia.com/wiki/File:Plankton_1.png
We are human
after all ...
Why do we add sleeps?
amazing artwork by mishmaccas
Our Goal:
Selenium in Sync
with Browser with
No Sleeps!
I’m Ready!
https://tenor.com/search/spongebob-im-ready-gifs
sELeNiUm
ProVides!
Web driver wait
WebDriverWait wait = new WebDriverWait(driver, 10);
Alert al = wait.until(
ExpectedConditions.alertIsPresent());
al.accept();
try {
return driver.switchTo().alert();
} catch (NoAlertPresentException e)
 new FluentWait<WebDriver>(webDriver)
.withTimeout(Duration.ofSeconds(max))
.pollingEvery(Duration.ofMillis(millis))
.ignoring(NoSuchElementException.class);
Fluent wait
public boolean enabled(WebElement element,  int time) {
    FluentWait<WebDriver> wait = fluentWait(time);
  
 return (boolean) wait.until(new ExpectedCondition<Boolean>() {
         public Boolean apply(WebDriver driver) {
            return element.isEnabled();
Define Conditions
assertTrue(waits.enabled(pageObject.element, timeout));
IDE
waitForElement(locator, driver) {
const elementLocator = parseLocator(locator);
await driver.wait(until.elementLocated(elementLocator),
IMPLICIT_WAIT);
VeRy
ConVeniENt
MetHoDs
Expected Conditions
“Example
wait.until(
ExpectedConditions.elementToBeClickable(locator));
Clickable Element is:
• Not null
• Visible
• Not Disabled
Cool’
common
conditions
but...
Javascript > webdriver.io
Ruby > Watir
DotNet > WaitHelpers
Other Languages
wait.until...
webdriver.findElement(By.tagName(“textarea”))
.getAttribute(“value”).contains(value);
Custom
waits.textAreaContains(“Hello Bikini Bottom”, 5);
CoMmoN
eveRydAy
waiTs
Visibility
Present
“Search”
Input
Element
CssSelector
[id=‘search-input’]
ExpectedConditions
.attributeContains(element, “class”,"hidden")
Present But ... Hidden
ExpectedConditions
.presenceOfElementLocatedBy(locator)
Visible
Select
“Year”
assertTrue(waits.isVisible(datePicker.selectYear));
ExpectedConditions.visibilityOf(element),
Invisible
Note Pad Icon
assertTrue(waits.invisibilityOf(locator, timeout));
ExpectedConditions.
.invisibilityOfElementLocated(locator)
CssSelector
“img[src*=‘note’]"
Appium
Samsung Tablet
Select option
Wait for Text
Text
tapMe(nav.company(“BEA”));
SCA - South Campbell Co
wait.until(new ExpectedCondition<Boolean>() {
     public Boolean apply(WebDriver driver) {
       return element.getAttribute("textContent").contains(text)
wait.textContains(
nav.companyName, “BEA - Berry Company”, 5);
Value
Appium iOS
Simulator
Sales App
Increase Qty
tapMe(sale.increaseQty);
fluentWait(ExpectedConditions
.textToBePresentInElementValue(element, text, timeout)
waitTextValue(sale.saleLineQuantity, “2”, 5);
Attribute
Block Colour Style
Change blue
to safety orange
view.waitColourPicker();
view.safetyOrange().click();
Style contains
“255, 105, 0”
Element
view.working()
Attribute
“style”
Colour
255, 105, 0
ExpectedConditions.attributeContains(
element, attribute, colour), timeout)
Clickability
Enabled
Context
Menu
Option
assertTrue(waits.isEnabled(menu.copyToCursor, 3));
ExpectedConditions.elementToBeClickable(element, timeout)
Check Box
Disabled
waits.disabled(
view.getCheckBox(“Phone / Fax Details”), 5);
Disabled
“class” contains “disabled"
OR
“disabled” is TRUE
OR
“read-only” is TRUE
Radio Button
Selected
clickRadioButton("Stock/Addition Acquisition");
waitSelected(
getRadioButton(“Stock/Addition Acquisition”));
wait.until(webDriver -> {
return element.isSelected();
Focus
Input Element
waitInputField(page.postcode);
wait.until(webDriver -> {
return
webDriver.switchTo().activeElement().equals(element).
&& element.isDisplayed()
&& element.getAttribute("class").contains("waiting-field");
Toolkit
Value
Text
Css
Style
Enabled
Hidden
Focus
Visible
Stale
Alert
Selected
Disabled
Present
ONE
ETERNITY
LATER...
MishMac
SleepRants
The Invasion of
the Upward
Sliding Cards!
Open a card [program]
Card slides down
Cannot click whilst animating
Episode 1
Smooth
Slide
ONE PRODUCTIVE
AGILE SPRINT
LATER...
<div name="webclient/seleniumConf/mywindow"
class="card active "
Animation over
<div name="CardContent"
class=“card-content animationover"
//div[contains(@name, '" + name + "')]
[contains(@class, ‘card')]
[not(contains(@class, ‘inactive'))]
[not(contains(@class, ‘collapsed'))]
[contains(@class, ‘active')]
/child::div[contains(@class, 'card-content animationover')]
Welsh XPath
Parent
div[name*=‘name']
[class*=‘active']
[class*=‘card']"
Child
div[name*='name'] >
div[name=‘CardContent’]
[class*='animationover']"
Simple Css
fluentWait(ExpectedConditions.and(
ExpectedConditions.visibilityOfElementLocated(parent),
ExpectedConditions.visibilityOfElementLocated(child),
ExpectedConditions.numberOfElementsToBe(parent, 1)
getCard(program, timeout);
One method
Find a
Selenium
Champion
Today!
The mystery of
the Un-clickable
element!
Edit Window (form or modal)
Click Save
Window Exit
Click on another element
Episode 2
Element not clickable at point
Hint! Other element would receive the click
Stale/
Invisible
Window
200
SUPERFAST
MILLISECONDS
LATER ...
 try{
fluentWait(ExpectedConditions
.invisibilityOf(element), timeout);
        return true;
Go Away!
edit.save().click();
// Wait Until NOT displayed
assertTrue(super.waitInvisible(edit.contactForm, 2));
// Ready!
page.element.click();
Wait for elements to be GONE
The misery and
utter loathing of
evil expanding
charts!
Load sales widgets
Click on bar graph chart
( to drill down )
Episode 3
Can’t click on expanding bars!
Spinners Gone
ExpectedConditions.numberOfElementsToBe(locator, 0)
CssSelector
[class=‘wks-spinner’] Still
Not Ready
CssSelector
class=[‘div.chart c3 chart-animation’]
Animation Gone
ExpectedConditions.numberOfElementsToBe(locator, 0)),
timeout);
Still
Not Ready
CssSelector
[class='chart c3’]
fluentWait(ExpectedConditions.and(
ExpectedConditions
.visibilityOfAllElementsLocatedBy(locator),
ExpectedConditions
.numberOfElementsToBe(locator, 6) ), timeout);
6 Charts
Still
Not Ready
ONE
EMBARRASSING
& SHAMEFUL
YEAR LATER...
Click... When?
Xpath
(//div[@id=‘id']//*[name()='svg']
//*[name()='g']/*[contains(@class, 'animated')])[3]
What changed?
Output
for int i = 0; i < 15; i++){

System.out.println(
webDriver.findElement(locator).getAttribute(“class”));

}
What?
Xpath
[contains(@class, 'expanded')]
Expanded
fluentWait(ExpectedConditions
.presenceOfAllElementsLocatedBy(locator), timeout;
Study
element
behaviours
The
Terminal
Sleep-Fest
Mutiny!
Open Terminal Window
Entering text command prompt
How to wait for prompts?
Episode 4
BOSS
SHAMING
Thread.sleep(500);
terminal.sendKeys("cd $HOME” + Keys.ENTER);
Thread.sleep(500);
terminal.sendKeys(“ls *.txt” + Keys.ENTER);
Thread.sleep(500);
terminal.sendKeys(“cp patrick.txt krustykrabs.txt” + Keys.ENTER);
Thread.sleep(500);
prompt = "sh-4.1$ ";
Prompt
Div 1
//div[@class=‘terminal’]/div[1]
Div 2
//div[@class=‘terminal’]/div[2]
Div 3
//div[@class=‘terminal’]/div[3]
Divs
Method
waitForPrompt("sh-4.1$ “, 1);
Simple Wait
ExpectedCondition
textToBePresentInElementLocated(locator, text),
timeout);
waitForPrompt("sh-4.1$ ", 1 );

terminal.sendKeys("cd $HOME” + Keys.ENTER);
waitForPrompt("sh-4.1$ ", 2 );
terminal.sendKeys(“ls *.txt” + Keys.ENTER);
Inspect =
Simple
Solution
A SPANNER THROWN
IN THE WORKS
Quick Fix
• Enter terminal commands
• Capture screen shot
• Convert greyscale image
• Extract characters (OCR)
• Assert expected content
4 sleep
destroying
episodes
later...
SEVERAL SLEEPY
& JET LAGGED
TRAVEL DAYS
LATER...
http://spongebob.wikia.com/wiki/File:Plankton_1.png
http://pngimg.com/imgs/animals/koala/
http://theideas.wikia.com/wiki/SpongeBob_SquarePants_(character)
“I’m Ready!”
@mishmaccas
mishmaccas@gmail.com
twitter
email

Contenu connexe

Similaire à Sleeping is not your best friend

Scraping recalcitrant web sites with Python & Selenium
Scraping recalcitrant web sites with Python & SeleniumScraping recalcitrant web sites with Python & Selenium
Scraping recalcitrant web sites with Python & SeleniumRoger Barnes
 
From Elixir to Akka (and back) - ElixirConf Mx 2017
From Elixir to Akka (and back) - ElixirConf Mx 2017From Elixir to Akka (and back) - ElixirConf Mx 2017
From Elixir to Akka (and back) - ElixirConf Mx 2017Agustin Ramos
 
The Spirit of Testing
The Spirit of TestingThe Spirit of Testing
The Spirit of TestingMarco Cedaro
 
Rv defcon25 keeping an eye on mobile applications - mikhail sosonkin
Rv defcon25   keeping an eye on mobile applications - mikhail sosonkinRv defcon25   keeping an eye on mobile applications - mikhail sosonkin
Rv defcon25 keeping an eye on mobile applications - mikhail sosonkinreconvillage
 
The Mouse is mightier than the sword
The Mouse is mightier than the swordThe Mouse is mightier than the sword
The Mouse is mightier than the swordPriyanka Aash
 
Visual Component Testing -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
Visual Component Testing  -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...Visual Component Testing  -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
Visual Component Testing -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...Applitools
 
Sharepoint 2013 - un slider JSSOR sur bib Images
Sharepoint 2013 - un slider JSSOR sur bib ImagesSharepoint 2013 - un slider JSSOR sur bib Images
Sharepoint 2013 - un slider JSSOR sur bib ImagesEmmanuel Sotter
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to JqueryAmzad Hossain
 
Jacob Waller: Webifying Titanium Development
Jacob Waller: Webifying Titanium DevelopmentJacob Waller: Webifying Titanium Development
Jacob Waller: Webifying Titanium DevelopmentAxway Appcelerator
 
Anatomy of a WordPress Hack
Anatomy of a WordPress HackAnatomy of a WordPress Hack
Anatomy of a WordPress Hackjessepollak
 
Js Saturday 2013 your jQuery could perform better
Js Saturday 2013 your jQuery could perform betterJs Saturday 2013 your jQuery could perform better
Js Saturday 2013 your jQuery could perform betterIvo Andreev
 
JavaScript and Accessibility: Creating Interface Magic for Everyone
JavaScript and Accessibility: Creating Interface Magic for EveryoneJavaScript and Accessibility: Creating Interface Magic for Everyone
JavaScript and Accessibility: Creating Interface Magic for EveryoneDerek Featherstone
 
The Fine Art of JavaScript Event Handling
The Fine Art of JavaScript Event HandlingThe Fine Art of JavaScript Event Handling
The Fine Art of JavaScript Event HandlingYorick Phoenix
 
Puppet at janrain
Puppet at janrainPuppet at janrain
Puppet at janrainPuppet
 
Your 🧠 on Swift Concurrency
Your 🧠 on Swift ConcurrencyYour 🧠 on Swift Concurrency
Your 🧠 on Swift ConcurrencyDonny Wals
 

Similaire à Sleeping is not your best friend (20)

Scraping recalcitrant web sites with Python & Selenium
Scraping recalcitrant web sites with Python & SeleniumScraping recalcitrant web sites with Python & Selenium
Scraping recalcitrant web sites with Python & Selenium
 
From Elixir to Akka (and back) - ElixirConf Mx 2017
From Elixir to Akka (and back) - ElixirConf Mx 2017From Elixir to Akka (and back) - ElixirConf Mx 2017
From Elixir to Akka (and back) - ElixirConf Mx 2017
 
The Spirit of Testing
The Spirit of TestingThe Spirit of Testing
The Spirit of Testing
 
Rv defcon25 keeping an eye on mobile applications - mikhail sosonkin
Rv defcon25   keeping an eye on mobile applications - mikhail sosonkinRv defcon25   keeping an eye on mobile applications - mikhail sosonkin
Rv defcon25 keeping an eye on mobile applications - mikhail sosonkin
 
The Mouse is mightier than the sword
The Mouse is mightier than the swordThe Mouse is mightier than the sword
The Mouse is mightier than the sword
 
Jquery
JqueryJquery
Jquery
 
Jquery
JqueryJquery
Jquery
 
Visual Component Testing -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
Visual Component Testing  -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...Visual Component Testing  -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
Visual Component Testing -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
 
Sharepoint 2013 - un slider JSSOR sur bib Images
Sharepoint 2013 - un slider JSSOR sur bib ImagesSharepoint 2013 - un slider JSSOR sur bib Images
Sharepoint 2013 - un slider JSSOR sur bib Images
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to Jquery
 
Hackers vs developers
Hackers vs developersHackers vs developers
Hackers vs developers
 
Jacob Waller: Webifying Titanium Development
Jacob Waller: Webifying Titanium DevelopmentJacob Waller: Webifying Titanium Development
Jacob Waller: Webifying Titanium Development
 
Anatomy of a WordPress Hack
Anatomy of a WordPress HackAnatomy of a WordPress Hack
Anatomy of a WordPress Hack
 
Js Saturday 2013 your jQuery could perform better
Js Saturday 2013 your jQuery could perform betterJs Saturday 2013 your jQuery could perform better
Js Saturday 2013 your jQuery could perform better
 
Injection flaw teaser
Injection flaw teaserInjection flaw teaser
Injection flaw teaser
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
 
JavaScript and Accessibility: Creating Interface Magic for Everyone
JavaScript and Accessibility: Creating Interface Magic for EveryoneJavaScript and Accessibility: Creating Interface Magic for Everyone
JavaScript and Accessibility: Creating Interface Magic for Everyone
 
The Fine Art of JavaScript Event Handling
The Fine Art of JavaScript Event HandlingThe Fine Art of JavaScript Event Handling
The Fine Art of JavaScript Event Handling
 
Puppet at janrain
Puppet at janrainPuppet at janrain
Puppet at janrain
 
Your 🧠 on Swift Concurrency
Your 🧠 on Swift ConcurrencyYour 🧠 on Swift Concurrency
Your 🧠 on Swift Concurrency
 

Dernier

%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareJim McKeeth
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...masabamasaba
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benonimasabamasaba
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 

Dernier (20)

%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 

Sleeping is not your best friend