SlideShare ist ein Scribd-Unternehmen logo
1 von 83
Downloaden Sie, um offline zu lesen
1
2
Your Speakers
AutomatedTestingforSEO
Hamlet Batista
CEO
at RankSense
Mike King
Managing Director
at iPullRank
3
Has this ever happened to you?
AutomatedTestingforSEO
44
AutomatedTestingforSEO
https://twitter.com/iPullRank/status/1045435603851063296
55
AutomatedTestingforSEO
https://twitter.com/iPullRank/status/1045435603851063296
66
AutomatedTestingforSEO
https://twitter.com/iPullRank/status/1045435603851063296
77
AutomatedTestingforSEO
https://twitter.com/iPullRank/status/1045435603851063296
88
AutomatedTestingforSEO
https://twitter.com/iPullRank/status/1045435603851063296
99
AutomatedTestingforSEO
https://twitter.com/iPullRank/status/1045435603851063296
1010
PlanningSEOfor2021
1111
PlanningSEOfor2021
12
What is Automated Testing?
AutomatedTestingforSEO
13
So first, let’s talk just a little bit
about modern web development
and how it works.
1414
Why Does This Matter?
AutomatedTestingforSEO
A lot of modern software frameworks follow this design pattern that allows for a separation of concerns between data, logic and frontend.
1515
Why Does This Matter?
AutomatedTestingforSEO
In this example the PHP framework Laravel manages the Model and the Controller and the JavaScript framework React acts as the View.
16
A URL is Converted
into a Route
AutomatedTestingforSEO
URLs point to controllers which
then return the right views
featuring data from the right
models.
This is why segmented crawls
are important to developers
being able to implement
recommendations.
17
Waterfall Rarely Makes
Sense Anymore
AutomatedTestingforSEO
It’s unlikely that the websites you
work on will follow a waterfall
methodology. Everything is agile
now.
18
Most Dev Teams Follow
Agile Methodology
AutomatedTestingforSEO
Small pieces of functionality are
tackled in short time frames or
“sprints.”
1919
Continuous Integration
AutomatedTestingforSEO
Often engineering teams are following a Continuous Integration model where teams
and individuals are autonomously pushing their code as they complete it.
2020
2121
Deployment Pipelines feature Automated Tests
AutomatedTestingforSEO
Deployment pipelines allow for safeguards to be put in place to ensure that
everyone is following the same process to get things deployed.
2222
Tests Can Make the Build Fail
AutomatedTestingforSEO
Certain tests are deemed as critical to the infrastructure of the website and will cause the deployment process to
fail and the developer has to go back and fix it before they can continue with their work.
2323
24
Automated Testing
AutomatedTestingforSEO
There are three flavors of testing that are most relevant to us as SEOs: Unit Tests,
Integration Tests and GUI Tests.
2525
Unit Testing
AutomatedTestingforSEO
With Unit tests you are testing an
individual function or procedure
to ensure that it works.
These are generally small and
fast. Codebases can have many
of these.
Unit tests can be used to determine the presence of tags and attributes in structure
of code to be served to the client, but not the rendered code.
26
Integration Testing
AutomatedTestingforSEO
With integration testing you’re
testing how your logic comes
together to build the bigger
system. It can involve external
data such as APIs and
databases or how the various
pieces of the systems work
together.
This is significantly slower than
unit testing, but depends on how
much of the system needs to be
rendered in order to complete
the test.
Integration tests can be used to determine tags, features and content of
completed HTML source being served to the client. However, there can be
overlap with what can be viewed in an UI test.
2727
Integration Testing
AutomatedTestingforSEO
UI Testing is the testing of the
frontend interface of your
website. This is largely used for
ensuring front end components
work as intended.
This is the slowest version of
testing because it requires the
page to be fully rendered.
UI tests can be used to determine tags, features and content of the rendered DOM
being served to the client.
2828
This is What Headless Browsers are Actually For
AutomatedTestingforSEO
Certain tests are deemed as critical to the infrastructure of the website and will cause the deployment process to
fail and the developer has to go back and fix it before they can continue with their work.
2929
Test Driven Development
AutomatedTestingforSEO
Some modern developers follow this methodology wherein they write their tests first and then write their code until
the tests pass. Unit tests are primarily used for this, but any type of test could be used. Note: UI Tests will
dramatically slow down deployment.
30
How Does This Apply to SEO?
AutomatedTestingforSEO
31
@BritneyMuller brings
up a great point
AutomatedTestingforSEO
My goal with that post and talk is
to introduce you to another way
to integrate developers and
ensure we’re all moving towards
working better together.
32
Let’s go back through those
horror stories.
3333
A Test Can Catch This
AutomatedTestingforSEO
Unit Test Failure Condition –
Presence of meta noindex tag on
functions that impact the
<head>.
Integration Test Failure
Condition – Presence of meta
noindex on routes that should
not have them.
This is a critical issue so this test should fail the build.
3434
Robots.txt Test
AutomatedTestingforSEO
Unit Test Failure Condition –
Presence of “User-agent: *
Disallow: /” on prod in a function
for the robots.txt route.
Integration Test
Failure Condition –
Presence of “User-agent: *
Disallow: /” on prod in robots.txt
URL.
This is a critical issue so this test should fail the build.
35
SSR Test
AutomatedTestingforSEO
Integrated Test/UI Test Failure
Condition -
Key body content is not available
in the HTML version.
This one requires the rendered
DOM as a comparison so it
technically could be a UI and/or
Integrated Test.
This should definitely fail the build.
3636
Rel-canonical
AutomatedTestingforSEO
This is a critical issue so this test should fail the build.
UI Test Failure Condition –
URLs that should have a
self-referencing canonical do not
in the DOM.
Integration Test Failure
Condition –
URLs that should have a
self-referencing canonical do not
in the HTML.
Unit Test Failure Condition -
Route does not set canonical tag
on the server side.
37
Invalid Tag Tests
AutomatedTestingforSEO
This is a critical issue so this test should fail the build.
UI Test Failure Condition –
Rendered DOM features tags in
the <head> sub-tree that are
invalid.
Integration Test
Failure Condition –
HTML features tags in the
<head> that are invalid or HTML
does not pass W3C validation.
Unit Test Failure Condition -
Function that returns the <head>
features tags that don’t fit a list
of valid <head> tags.
3838
But Testing is Not a
Magic Bullet
AutomatedTestingforSEO
Sure, we can develop tests for to
look for the presence of
structured markup and to
enforce metadata specifications,
but when things go this wrong,
you have to put your team
member, project management,
consultant, management hat on
and get to the bottom of what
went wrong.
3939
Who Usually Does this Work?
AutomatedTestingforSEO
https://searchengineland.com/get-developers-implement-seo-recommendations-280318
Developer QA Engineer
4040
How Can We Split the Responsibility for Unit Tests?
AutomatedTestingforSEO
https://searchengineland.com/catching-seo-errors-during-development-using-automated-tests-322365
4141
How Can We Split the Responsibility for End to End Tests?
AutomatedTestingforSEO
https://searchengineland.com/catching-seo-errors-during-development-using-automated-tests-322365
42
Doing an SEO Audit is basically
doing similar work to that of a
QA Engineer.
43
Crawling HTML is
Somewhat like
Integration Testing
AutomatedTestingforSEO
You’re looking at the results of
what the software spits out
when all the systems come
together.
4444
Crawling JavaScript is
more like UI Testing
AutomatedTestingforSEO
You’re looking at the results
when the user interface is
rendered.
4545
…And you should be comparing the differences
AutomatedTestingforSEO
John Hogg from iProspect shared his diff comparison Chrome extension that computes the DIFF
between HTML and rendered DOM. When it’s released I encourage you to check it out.
4646
Your Role is To Help Plan the Tests
AutomatedTestingforSEO
You’ll want to work with a QA Engineer, a Product Manager or a Developer to develop test cases that can then be built into.
4747
Here are Few Examples
AutomatedTestingforSEO
These examples of tests should be enough to get you started on defining your own potential tests for SEO.
Test Case
ID
Test
Scenario Test Type Test Steps Test Data
Expected
Results
Actual
Results Pass/Fail
SEO01 Presence of
Meta
Descriptions
Unit Test Check for
presence of
meta
description tag
in HTML
Page template
code
All URLs should
have meta
description
Product Detail
Page is missing
meta
description
PASS
SEO02 Viable Internal
Links
Functional Test 1.Render pages
2.Open all
internal links
3.Review
response codes
Crawled URL
data
All links return
200 response
code
Many links to
redirects and
404s FAIL
SEO03 Average Page
Speed Less
than 2 Seconds
Functional/Integ
ration Test
1.Render pages
2.Capture page
speed
3.Determine
average page
speed per page
type
Render all page
types from URL
list
All page types
should return an
average of 2
seconds load
time
Homepage
takes 5 seconds
to load
FAIL
48
Tools
Some tools you can use to get your automated
testing for SEO off the ground
AutomatedTestingforSEO
49
Meet Jenkins, Github
Actions, CircleCI
AutomatedTestingforSEO
If your developers are doing
Continuous Integration or
Continuous Delivery, it’s likely
that they are using Jenkins,
Github Actions, CircleCI or
similar tools.
https://jenkins.io/
https://circleci.com/
https://github.com/features/acti
ons
5050
Get Failure Alerts in Slack
AutomatedTestingforSEO
https://plugins.jenkins.io/slack
5151
Or in Jenkins’ logs
AutomatedTestingforSEO
You could also just regularly the logs that Jenkins provides.
5252
Or Pipe it into MySQL
AutomatedTestingforSEO
Sending the Jenkins logs into
MySQL gives you the opportunity
to monitor and visualize failures
and successes of builds with
respect to SEO in a variety of
ways such as through Google
Data Studio.
5353
You’ll Also Need a Crawler
AutomatedTestingforSEO
You’ll want a headless crawler and a text-based crawler to spin up pages and run tests on
and a fixed list of pages that represent all of the public-facing routes.
https://github.com/yujiosaka/headless-
chrome-crawler https://github.com/antivanov/js-crawler
5454
You’ll Also Need a Crawler
AutomatedTestingforSEO
Building your crawler with AWS Lambda, Azure Functions or Google Clouds Functions
may be a great way to enjoy scale without having to manage additional servers.
5555
Tips On Testing
AutomatedTestingforSEO
Make only mission critical SEO tests potentially fail the build.
Most SEO issues will be spotted in your integration tests.
Include your SEO tests in every build.
Keep your testing suites separate.
Do all crawling in parallel.
Crawl/check only one or two URLs per template to speed up
checks and avoid slowing down the build
56
Let’s Code Some Tests
...
AutomatedTestingforSEO
5757
AutomatedTestingforSEO
Here is a simple AngularJs
app that we will use to
illustrate the ideas in this
presentation
https://github.com/ranksense/gtrends-watch
Let’s Code Some Automated SEO Tests!
Here is a simple AngularJs app that we will use to illustrate the ideas in this presentation
https://github.com/ranksense/gtrends-watch
58
IPULLRANK.COM
AutomatedTestingforSEO
59
IPULLRANK.COM
AutomatedTestingforSEO
6060
AutomatedTestingforSEO
jasmine.github.io
6161
Using Unit Tests to Catch Missing Meta Tags
AutomatedTestingforSEO
Unit tests help check every component individually performs as expected.
https://github.com/ranksense/gtrends-watch/blob/master/src/app/category-topics/category-topics.component.spec.ts#L52
https://github.com/ranksense/gtrends-watch/tree/seo-tests
6262
Which Components Require SEO Unit Tests?
AutomatedTestingforSEO
Not every component is in scope of SEO (might be invisible to bots)
6363
The Role of End to End
SEO Tests
AutomatedTestingforSEO
https://www.protractortest.org/
End to end/integration tests help
check overall operation.
User them to simulate logical
crawler paths and actions.
6464
Which Actions Require SEO End to End Tests?
AutomatedTestingforSEO
Many user actions are not in scope of SEO (clicking/saving)
65
Checking for
Rendering Problems
AutomatedTestingforSEO
End to end tests are ideal to
check for rendering problems.
66
A Tricky Test: BODY HTML tags in the HEAD
Does this affect Googlebot?
If it does, does the fix work too?
Let’s see!
AutomatedTestingforSEO
6767
BODY HTML tags in the HEAD
AutomatedTestingforSEO
If the page is missing the BODY tag, Google adds it back.
Good.
6868
BODY HTML tags in the HEAD
AutomatedTestingforSEO
If we add a <DIV> manually to the HTML HEAD, Google pushes our canonical to the BODY.
Same as in the browser.
6969
BODY HTML tags in the HEAD
AutomatedTestingforSEO
If we add a <DIV> to the HTML HEAD using a script, the URL Inspection Tool gives an error and the page doesn’t get indexed.
The browser can handle the page.
7070
BODY HTML tags in the HEAD
AutomatedTestingforSEO
If we move the SEO tags to the top of the HTML and leave the invalid <DIV>, the canonical remains in the HTML HEAD.
7171
BODY HTML tags in the HEAD
AutomatedTestingforSEO
It is properly detected.
Good.
7272
BODY HTML tags in the HEAD
AutomatedTestingforSEO
The optimal solution is to move the invalid scripts and tags to the HML BODY.
7373
How do We Detect it?
AutomatedTestingforSEO
https://gist.github.com/hamletbatista/ad99891ecbcc3f56e7e65e6d01311225
Here is the Python code!
https://gist.github.com/hamletbat
ista/ad99891ecbcc3f56e7e65e6d
01311225
It searches for a canonical
anywhere in the DOM, and prints
the path where it found it.
If it is not in the HEAD, we can fail
the test.
7474
Test Coverage: Tracking Down Code Without Tests
AutomatedTestingforSEO
Writing tests is half
the battle
The other half is
making sure the
relevant code is
always covered with
tests.
7575
Test Coverage: Tracking Down Code Without Tests
AutomatedTestingforSEO
Tools like Istanbul
help with this in
JavaScript-driven
apps.
https://istanbul.js.org/
76
Wrapping up.
Who are we and where am we from?
7777
PlanningSEOfor2021
7878
7979
Mike King
Founder & Managing Director
at iPullRank
@iPullRank
PlanningSEOfor2021
8080
Hamlet Batista
CEO & Founder
at RankSense
@hamletbatista
PlanningSEOfor2021
8181
8282
PlanningSEOfor2021
@RankSense
ranksense.com
33 Wood Ave South
Suite 600
Iselin, NJ 08830 USA
+1 866.882.2983
83
Q&A / Thank You!
Twitter: @ipullrankagency
Email: hello@ipullrank.com
Website: https://ipullrank.com
Get in touch if you need some help!
PlanningSEOfor2021
Mike King
Managing Director
at iPullRank
Hamlet Batista
CEO & Founder
at RankSense

Weitere ähnliche Inhalte

Was ist angesagt?

Core Web Vitals and Your Search Rankings
Core Web Vitals and Your Search Rankings Core Web Vitals and Your Search Rankings
Core Web Vitals and Your Search Rankings Michael King
 
TechSEO Boost 2021 - Rendering Strategies: Measuring the Devil’s Details in C...
TechSEO Boost 2021 - Rendering Strategies: Measuring the Devil’s Details in C...TechSEO Boost 2021 - Rendering Strategies: Measuring the Devil’s Details in C...
TechSEO Boost 2021 - Rendering Strategies: Measuring the Devil’s Details in C...Catalyst
 
Schema and Open Graph 101 - SMX Munich
Schema and Open Graph 101 - SMX MunichSchema and Open Graph 101 - SMX Munich
Schema and Open Graph 101 - SMX MunichMatthew Brown
 
TechSEO Boost 2018: You Have Structured Data, Now What?
TechSEO Boost 2018: You Have Structured Data, Now What?TechSEO Boost 2018: You Have Structured Data, Now What?
TechSEO Boost 2018: You Have Structured Data, Now What?Catalyst
 
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEO
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEORendering SEO Manifesto - Why we need to go beyond JavaScript SEO
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEOOnely
 
Competitor Site Audits with Free Tools and Data - Sophie Gibson - BrightonSEO...
Competitor Site Audits with Free Tools and Data - Sophie Gibson - BrightonSEO...Competitor Site Audits with Free Tools and Data - Sophie Gibson - BrightonSEO...
Competitor Site Audits with Free Tools and Data - Sophie Gibson - BrightonSEO...Sophie Gibson
 
Redefining Technical SEO, #MozCon 2019 by Paul Shapiro
Redefining Technical SEO, #MozCon 2019 by Paul ShapiroRedefining Technical SEO, #MozCon 2019 by Paul Shapiro
Redefining Technical SEO, #MozCon 2019 by Paul ShapiroPaul Shapiro
 
SearchLove Boston 2016 | Mary Bowling | Local Search Experience Optimization
SearchLove Boston 2016 | Mary Bowling | Local Search Experience OptimizationSearchLove Boston 2016 | Mary Bowling | Local Search Experience Optimization
SearchLove Boston 2016 | Mary Bowling | Local Search Experience OptimizationDistilled
 
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Alex Wright
 
Put Your Data to Work: New Ways to Uncover Content Ideas that Deliver
Put Your Data to Work: New Ways to Uncover Content Ideas that DeliverPut Your Data to Work: New Ways to Uncover Content Ideas that Deliver
Put Your Data to Work: New Ways to Uncover Content Ideas that DeliverCatalyst
 
Miracle Inameti-Archibong - We made our website a progressive web app and why...
Miracle Inameti-Archibong - We made our website a progressive web app and why...Miracle Inameti-Archibong - We made our website a progressive web app and why...
Miracle Inameti-Archibong - We made our website a progressive web app and why...SiteVisibility
 
Brighton SEO July 2021 How JavaScript is preventing you from passing Core W...
Brighton SEO July 2021   How JavaScript is preventing you from passing Core W...Brighton SEO July 2021   How JavaScript is preventing you from passing Core W...
Brighton SEO July 2021 How JavaScript is preventing you from passing Core W...Izabela Wisniewska
 
The Thin Line Between Seth Godin & Neil Strauss
The Thin Line Between Seth Godin & Neil StraussThe Thin Line Between Seth Godin & Neil Strauss
The Thin Line Between Seth Godin & Neil StraussMichael King
 
The State of the Web: Pagination and Infinite Scroll
The State of the Web: Pagination and Infinite ScrollThe State of the Web: Pagination and Infinite Scroll
The State of the Web: Pagination and Infinite ScrollAdam Gent
 
SearchLove Boston 2016 | Mike King | Developer Thinking for SEOs
SearchLove Boston 2016 | Mike King | Developer Thinking for SEOsSearchLove Boston 2016 | Mike King | Developer Thinking for SEOs
SearchLove Boston 2016 | Mike King | Developer Thinking for SEOsDistilled
 
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...Ruth Everett
 
TechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsTechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsDavid Sottimano
 
Debugging rendering problems at scale
Debugging rendering problems at scaleDebugging rendering problems at scale
Debugging rendering problems at scaleGiacomo Zecchini
 
Building, hacking and killing a bespoke CMS - Search Leeds 19
Building, hacking and killing a bespoke CMS - Search Leeds 19Building, hacking and killing a bespoke CMS - Search Leeds 19
Building, hacking and killing a bespoke CMS - Search Leeds 19Fabrizio Ballarini
 
David Lockie 'Using Open Source to Speed Up your Roadmap' BrightonSEO 2017
David Lockie 'Using Open Source to Speed Up your Roadmap' BrightonSEO 2017David Lockie 'Using Open Source to Speed Up your Roadmap' BrightonSEO 2017
David Lockie 'Using Open Source to Speed Up your Roadmap' BrightonSEO 2017Angry Creative (UK)
 

Was ist angesagt? (20)

Core Web Vitals and Your Search Rankings
Core Web Vitals and Your Search Rankings Core Web Vitals and Your Search Rankings
Core Web Vitals and Your Search Rankings
 
TechSEO Boost 2021 - Rendering Strategies: Measuring the Devil’s Details in C...
TechSEO Boost 2021 - Rendering Strategies: Measuring the Devil’s Details in C...TechSEO Boost 2021 - Rendering Strategies: Measuring the Devil’s Details in C...
TechSEO Boost 2021 - Rendering Strategies: Measuring the Devil’s Details in C...
 
Schema and Open Graph 101 - SMX Munich
Schema and Open Graph 101 - SMX MunichSchema and Open Graph 101 - SMX Munich
Schema and Open Graph 101 - SMX Munich
 
TechSEO Boost 2018: You Have Structured Data, Now What?
TechSEO Boost 2018: You Have Structured Data, Now What?TechSEO Boost 2018: You Have Structured Data, Now What?
TechSEO Boost 2018: You Have Structured Data, Now What?
 
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEO
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEORendering SEO Manifesto - Why we need to go beyond JavaScript SEO
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEO
 
Competitor Site Audits with Free Tools and Data - Sophie Gibson - BrightonSEO...
Competitor Site Audits with Free Tools and Data - Sophie Gibson - BrightonSEO...Competitor Site Audits with Free Tools and Data - Sophie Gibson - BrightonSEO...
Competitor Site Audits with Free Tools and Data - Sophie Gibson - BrightonSEO...
 
Redefining Technical SEO, #MozCon 2019 by Paul Shapiro
Redefining Technical SEO, #MozCon 2019 by Paul ShapiroRedefining Technical SEO, #MozCon 2019 by Paul Shapiro
Redefining Technical SEO, #MozCon 2019 by Paul Shapiro
 
SearchLove Boston 2016 | Mary Bowling | Local Search Experience Optimization
SearchLove Boston 2016 | Mary Bowling | Local Search Experience OptimizationSearchLove Boston 2016 | Mary Bowling | Local Search Experience Optimization
SearchLove Boston 2016 | Mary Bowling | Local Search Experience Optimization
 
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
 
Put Your Data to Work: New Ways to Uncover Content Ideas that Deliver
Put Your Data to Work: New Ways to Uncover Content Ideas that DeliverPut Your Data to Work: New Ways to Uncover Content Ideas that Deliver
Put Your Data to Work: New Ways to Uncover Content Ideas that Deliver
 
Miracle Inameti-Archibong - We made our website a progressive web app and why...
Miracle Inameti-Archibong - We made our website a progressive web app and why...Miracle Inameti-Archibong - We made our website a progressive web app and why...
Miracle Inameti-Archibong - We made our website a progressive web app and why...
 
Brighton SEO July 2021 How JavaScript is preventing you from passing Core W...
Brighton SEO July 2021   How JavaScript is preventing you from passing Core W...Brighton SEO July 2021   How JavaScript is preventing you from passing Core W...
Brighton SEO July 2021 How JavaScript is preventing you from passing Core W...
 
The Thin Line Between Seth Godin & Neil Strauss
The Thin Line Between Seth Godin & Neil StraussThe Thin Line Between Seth Godin & Neil Strauss
The Thin Line Between Seth Godin & Neil Strauss
 
The State of the Web: Pagination and Infinite Scroll
The State of the Web: Pagination and Infinite ScrollThe State of the Web: Pagination and Infinite Scroll
The State of the Web: Pagination and Infinite Scroll
 
SearchLove Boston 2016 | Mike King | Developer Thinking for SEOs
SearchLove Boston 2016 | Mike King | Developer Thinking for SEOsSearchLove Boston 2016 | Mike King | Developer Thinking for SEOs
SearchLove Boston 2016 | Mike King | Developer Thinking for SEOs
 
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
 
TechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsTechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOs
 
Debugging rendering problems at scale
Debugging rendering problems at scaleDebugging rendering problems at scale
Debugging rendering problems at scale
 
Building, hacking and killing a bespoke CMS - Search Leeds 19
Building, hacking and killing a bespoke CMS - Search Leeds 19Building, hacking and killing a bespoke CMS - Search Leeds 19
Building, hacking and killing a bespoke CMS - Search Leeds 19
 
David Lockie 'Using Open Source to Speed Up your Roadmap' BrightonSEO 2017
David Lockie 'Using Open Source to Speed Up your Roadmap' BrightonSEO 2017David Lockie 'Using Open Source to Speed Up your Roadmap' BrightonSEO 2017
David Lockie 'Using Open Source to Speed Up your Roadmap' BrightonSEO 2017
 

Ähnlich wie iPullRank Webinar - Automated Testing For SEO With Hamlet Batista

Testing Experience - Evolution of Test Automation Frameworks
Testing Experience - Evolution of Test Automation FrameworksTesting Experience - Evolution of Test Automation Frameworks
Testing Experience - Evolution of Test Automation FrameworksŁukasz Morawski
 
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...DevOps.com
 
Are Your Continuous Tests Too Fragile for Agile?
Are Your Continuous Tests Too Fragile for Agile?Are Your Continuous Tests Too Fragile for Agile?
Are Your Continuous Tests Too Fragile for Agile?Parasoft
 
Tackling Strategic Engineering Challenges
Tackling Strategic Engineering ChallengesTackling Strategic Engineering Challenges
Tackling Strategic Engineering ChallengesApplause
 
Test Design for Fully Automated Build Architectures
Test Design for Fully Automated Build ArchitecturesTest Design for Fully Automated Build Architectures
Test Design for Fully Automated Build ArchitecturesMelissa Benua
 
The Testing Planet Issue 2
The Testing Planet Issue 2The Testing Planet Issue 2
The Testing Planet Issue 2Rosie Sherry
 
End-end tests as first class citizens - SeleniumConf 2020
End-end tests as first class citizens - SeleniumConf 2020End-end tests as first class citizens - SeleniumConf 2020
End-end tests as first class citizens - SeleniumConf 2020Abhijeet Vaikar
 
Microsoft Fakes, Unit Testing the (almost) Untestable Code
Microsoft Fakes, Unit Testing the (almost) Untestable CodeMicrosoft Fakes, Unit Testing the (almost) Untestable Code
Microsoft Fakes, Unit Testing the (almost) Untestable CodeAleksandar Bozinovski
 
Common Automation Mistakes
Common Automation Mistakes Common Automation Mistakes
Common Automation Mistakes Rock Interview
 
Software Testing Interview Questions & Answers | Edureka
Software Testing Interview Questions & Answers | EdurekaSoftware Testing Interview Questions & Answers | Edureka
Software Testing Interview Questions & Answers | EdurekaEdureka!
 
Lightning Talks by Globant - Automation (This app runs by itself )
Lightning Talks by Globant -  Automation (This app runs by itself ) Lightning Talks by Globant -  Automation (This app runs by itself )
Lightning Talks by Globant - Automation (This app runs by itself ) Globant
 
How to scale your Test Automation
How to scale your Test AutomationHow to scale your Test Automation
How to scale your Test AutomationKlaus Salchner
 
Why Test Automation Fails
Why Test Automation FailsWhy Test Automation Fails
Why Test Automation FailsRanorex
 
Creating testing tools to support development
Creating testing tools to support developmentCreating testing tools to support development
Creating testing tools to support developmentChema del Barco
 

Ähnlich wie iPullRank Webinar - Automated Testing For SEO With Hamlet Batista (20)

Testing Experience - Evolution of Test Automation Frameworks
Testing Experience - Evolution of Test Automation FrameworksTesting Experience - Evolution of Test Automation Frameworks
Testing Experience - Evolution of Test Automation Frameworks
 
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
 
Are Your Continuous Tests Too Fragile for Agile?
Are Your Continuous Tests Too Fragile for Agile?Are Your Continuous Tests Too Fragile for Agile?
Are Your Continuous Tests Too Fragile for Agile?
 
Future of QA
Future of QAFuture of QA
Future of QA
 
Futureofqa
FutureofqaFutureofqa
Futureofqa
 
Tackling Strategic Engineering Challenges
Tackling Strategic Engineering ChallengesTackling Strategic Engineering Challenges
Tackling Strategic Engineering Challenges
 
Why test with flex unit
Why test with flex unitWhy test with flex unit
Why test with flex unit
 
Test Design for Fully Automated Build Architectures
Test Design for Fully Automated Build ArchitecturesTest Design for Fully Automated Build Architectures
Test Design for Fully Automated Build Architectures
 
The Testing Planet Issue 2
The Testing Planet Issue 2The Testing Planet Issue 2
The Testing Planet Issue 2
 
End-end tests as first class citizens - SeleniumConf 2020
End-end tests as first class citizens - SeleniumConf 2020End-end tests as first class citizens - SeleniumConf 2020
End-end tests as first class citizens - SeleniumConf 2020
 
Microsoft Fakes, Unit Testing the (almost) Untestable Code
Microsoft Fakes, Unit Testing the (almost) Untestable CodeMicrosoft Fakes, Unit Testing the (almost) Untestable Code
Microsoft Fakes, Unit Testing the (almost) Untestable Code
 
Unit Tests with Microsoft Fakes
Unit Tests with Microsoft FakesUnit Tests with Microsoft Fakes
Unit Tests with Microsoft Fakes
 
Common Automation Mistakes
Common Automation Mistakes Common Automation Mistakes
Common Automation Mistakes
 
Software Testing Interview Questions & Answers | Edureka
Software Testing Interview Questions & Answers | EdurekaSoftware Testing Interview Questions & Answers | Edureka
Software Testing Interview Questions & Answers | Edureka
 
Lightning Talks by Globant - Automation (This app runs by itself )
Lightning Talks by Globant -  Automation (This app runs by itself ) Lightning Talks by Globant -  Automation (This app runs by itself )
Lightning Talks by Globant - Automation (This app runs by itself )
 
How to scale your Test Automation
How to scale your Test AutomationHow to scale your Test Automation
How to scale your Test Automation
 
Combined Project
Combined ProjectCombined Project
Combined Project
 
Why Test Automation Fails
Why Test Automation FailsWhy Test Automation Fails
Why Test Automation Fails
 
Unit testing - An introduction
Unit testing - An introductionUnit testing - An introduction
Unit testing - An introduction
 
Creating testing tools to support development
Creating testing tools to support developmentCreating testing tools to support development
Creating testing tools to support development
 

Mehr von Michael King

Using Tags & Taxonomies to super charge your eCommerce SEO
Using Tags & Taxonomies to super charge your eCommerce SEOUsing Tags & Taxonomies to super charge your eCommerce SEO
Using Tags & Taxonomies to super charge your eCommerce SEOMichael King
 
Building the content machine
Building the content machine Building the content machine
Building the content machine Michael King
 
iPullRank Webinar - Forecasting and Calculating ROI for SEO
iPullRank Webinar - Forecasting and Calculating ROI for SEOiPullRank Webinar - Forecasting and Calculating ROI for SEO
iPullRank Webinar - Forecasting and Calculating ROI for SEOMichael King
 
iPullRank Webinar - Navigating Black Friday in COVID-19
iPullRank Webinar - Navigating Black Friday in COVID-19iPullRank Webinar - Navigating Black Friday in COVID-19
iPullRank Webinar - Navigating Black Friday in COVID-19Michael King
 
iPullRank Webinar - Planning SEO for 2021
iPullRank Webinar - Planning SEO for 2021 iPullRank Webinar - Planning SEO for 2021
iPullRank Webinar - Planning SEO for 2021 Michael King
 
The Essentials to Modern Enterprise SEO
The Essentials to Modern Enterprise SEOThe Essentials to Modern Enterprise SEO
The Essentials to Modern Enterprise SEOMichael King
 
Marketing in the Age of COVID-19
Marketing in the Age of COVID-19Marketing in the Age of COVID-19
Marketing in the Age of COVID-19Michael King
 
How to Build an Empathetic Marketing Strategy During the Times of COVID19
How to Build an Empathetic Marketing Strategy During the Times of COVID19How to Build an Empathetic Marketing Strategy During the Times of COVID19
How to Build an Empathetic Marketing Strategy During the Times of COVID19Michael King
 
You Don't Know SEO
You Don't Know SEOYou Don't Know SEO
You Don't Know SEOMichael King
 
Modern SEO Players Guide
Modern SEO Players GuideModern SEO Players Guide
Modern SEO Players GuideMichael King
 
Building your outreach machine
Building your outreach machineBuilding your outreach machine
Building your outreach machineMichael King
 
The Pragmatic Future of Search
The Pragmatic Future of SearchThe Pragmatic Future of Search
The Pragmatic Future of SearchMichael King
 
SEO: Same as it Ever Was
SEO: Same as it Ever WasSEO: Same as it Ever Was
SEO: Same as it Ever WasMichael King
 
Major Keys to Video Content Strategy
Major Keys to Video Content StrategyMajor Keys to Video Content Strategy
Major Keys to Video Content StrategyMichael King
 
The Technical SEO Renaissance
The Technical SEO RenaissanceThe Technical SEO Renaissance
The Technical SEO RenaissanceMichael King
 
How to generate those leads all day everyday
How to generate those leads all day everydayHow to generate those leads all day everyday
How to generate those leads all day everydayMichael King
 
Technical Marketing is the Price of Admission
Technical Marketing is the Price of AdmissionTechnical Marketing is the Price of Admission
Technical Marketing is the Price of AdmissionMichael King
 
Actionable Data-Driven Personas for CRO
Actionable Data-Driven Personas for CROActionable Data-Driven Personas for CRO
Actionable Data-Driven Personas for CROMichael King
 
Perfect Starts: How to Get the Right Traffic with a Content Audit
Perfect Starts: How to Get the Right Traffic with a Content AuditPerfect Starts: How to Get the Right Traffic with a Content Audit
Perfect Starts: How to Get the Right Traffic with a Content AuditMichael King
 
Storytelling By Numbers
Storytelling By NumbersStorytelling By Numbers
Storytelling By NumbersMichael King
 

Mehr von Michael King (20)

Using Tags & Taxonomies to super charge your eCommerce SEO
Using Tags & Taxonomies to super charge your eCommerce SEOUsing Tags & Taxonomies to super charge your eCommerce SEO
Using Tags & Taxonomies to super charge your eCommerce SEO
 
Building the content machine
Building the content machine Building the content machine
Building the content machine
 
iPullRank Webinar - Forecasting and Calculating ROI for SEO
iPullRank Webinar - Forecasting and Calculating ROI for SEOiPullRank Webinar - Forecasting and Calculating ROI for SEO
iPullRank Webinar - Forecasting and Calculating ROI for SEO
 
iPullRank Webinar - Navigating Black Friday in COVID-19
iPullRank Webinar - Navigating Black Friday in COVID-19iPullRank Webinar - Navigating Black Friday in COVID-19
iPullRank Webinar - Navigating Black Friday in COVID-19
 
iPullRank Webinar - Planning SEO for 2021
iPullRank Webinar - Planning SEO for 2021 iPullRank Webinar - Planning SEO for 2021
iPullRank Webinar - Planning SEO for 2021
 
The Essentials to Modern Enterprise SEO
The Essentials to Modern Enterprise SEOThe Essentials to Modern Enterprise SEO
The Essentials to Modern Enterprise SEO
 
Marketing in the Age of COVID-19
Marketing in the Age of COVID-19Marketing in the Age of COVID-19
Marketing in the Age of COVID-19
 
How to Build an Empathetic Marketing Strategy During the Times of COVID19
How to Build an Empathetic Marketing Strategy During the Times of COVID19How to Build an Empathetic Marketing Strategy During the Times of COVID19
How to Build an Empathetic Marketing Strategy During the Times of COVID19
 
You Don't Know SEO
You Don't Know SEOYou Don't Know SEO
You Don't Know SEO
 
Modern SEO Players Guide
Modern SEO Players GuideModern SEO Players Guide
Modern SEO Players Guide
 
Building your outreach machine
Building your outreach machineBuilding your outreach machine
Building your outreach machine
 
The Pragmatic Future of Search
The Pragmatic Future of SearchThe Pragmatic Future of Search
The Pragmatic Future of Search
 
SEO: Same as it Ever Was
SEO: Same as it Ever WasSEO: Same as it Ever Was
SEO: Same as it Ever Was
 
Major Keys to Video Content Strategy
Major Keys to Video Content StrategyMajor Keys to Video Content Strategy
Major Keys to Video Content Strategy
 
The Technical SEO Renaissance
The Technical SEO RenaissanceThe Technical SEO Renaissance
The Technical SEO Renaissance
 
How to generate those leads all day everyday
How to generate those leads all day everydayHow to generate those leads all day everyday
How to generate those leads all day everyday
 
Technical Marketing is the Price of Admission
Technical Marketing is the Price of AdmissionTechnical Marketing is the Price of Admission
Technical Marketing is the Price of Admission
 
Actionable Data-Driven Personas for CRO
Actionable Data-Driven Personas for CROActionable Data-Driven Personas for CRO
Actionable Data-Driven Personas for CRO
 
Perfect Starts: How to Get the Right Traffic with a Content Audit
Perfect Starts: How to Get the Right Traffic with a Content AuditPerfect Starts: How to Get the Right Traffic with a Content Audit
Perfect Starts: How to Get the Right Traffic with a Content Audit
 
Storytelling By Numbers
Storytelling By NumbersStorytelling By Numbers
Storytelling By Numbers
 

Kürzlich hochgeladen

Most Impressive Construction Leaders in Tech, Making Waves in the Industry, 2...
Most Impressive Construction Leaders in Tech, Making Waves in the Industry, 2...Most Impressive Construction Leaders in Tech, Making Waves in the Industry, 2...
Most Impressive Construction Leaders in Tech, Making Waves in the Industry, 2...CIO Business World
 
Most Influential HR Leaders Leading the Corporate World, 2024 (Final file).pdf
Most Influential HR Leaders Leading the Corporate World, 2024 (Final file).pdfMost Influential HR Leaders Leading the Corporate World, 2024 (Final file).pdf
Most Influential HR Leaders Leading the Corporate World, 2024 (Final file).pdfCIO Business World
 
The Impact of Digital Technologies
The Impact of Digital Technologies The Impact of Digital Technologies
The Impact of Digital Technologies bruguardarib
 
Best digital marketing e-book form bignners
Best digital marketing e-book form bignnersBest digital marketing e-book form bignners
Best digital marketing e-book form bignnersmuntasibkhan58
 
Common Culture: Paul Willis Symbolic Creativity
Common Culture: Paul Willis Symbolic CreativityCommon Culture: Paul Willis Symbolic Creativity
Common Culture: Paul Willis Symbolic CreativityMonishka Adhikari
 
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon GarsideInbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garsiderobwhite630290
 
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfResearch and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfVWO
 
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Michael Kors marketing assignment swot analysis
Michael Kors marketing assignment swot analysisMichael Kors marketing assignment swot analysis
Michael Kors marketing assignment swot analysisjunaid794917
 
Fueling A_B experiments with behavioral insights (1).pdf
Fueling A_B experiments with behavioral insights (1).pdfFueling A_B experiments with behavioral insights (1).pdf
Fueling A_B experiments with behavioral insights (1).pdfVWO
 
Codes and Conventions of Film Magazine Websites.pptx
Codes and Conventions of Film Magazine Websites.pptxCodes and Conventions of Film Magazine Websites.pptx
Codes and Conventions of Film Magazine Websites.pptxGeorgeCulica
 
定制(ULV毕业证书)拉文大学毕业证成绩单原版一比一
定制(ULV毕业证书)拉文大学毕业证成绩单原版一比一定制(ULV毕业证书)拉文大学毕业证成绩单原版一比一
定制(ULV毕业证书)拉文大学毕业证成绩单原版一比一s SS
 
The power of SEO-driven market intelligence
The power of SEO-driven market intelligenceThe power of SEO-driven market intelligence
The power of SEO-driven market intelligenceHinde Lamrani
 
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024CIO Business World
 
Influencer Marketing Power point presentation
Influencer Marketing  Power point presentationInfluencer Marketing  Power point presentation
Influencer Marketing Power point presentationdgtivemarketingagenc
 
Storyboards for my Final Major Project Video
Storyboards for my Final Major Project VideoStoryboards for my Final Major Project Video
Storyboards for my Final Major Project VideoSineadBidwell
 
Understanding the Affiliate Marketing Channel; the short guide
Understanding the Affiliate Marketing Channel; the short guideUnderstanding the Affiliate Marketing Channel; the short guide
Understanding the Affiliate Marketing Channel; the short guidePartnercademy
 
top marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar Ctop marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar CManojkumar C
 
Codes and Conventions of Film Magazine Covers.pptx
Codes and Conventions of Film Magazine Covers.pptxCodes and Conventions of Film Magazine Covers.pptx
Codes and Conventions of Film Magazine Covers.pptxGeorgeCulica
 
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...Ahrefs
 

Kürzlich hochgeladen (20)

Most Impressive Construction Leaders in Tech, Making Waves in the Industry, 2...
Most Impressive Construction Leaders in Tech, Making Waves in the Industry, 2...Most Impressive Construction Leaders in Tech, Making Waves in the Industry, 2...
Most Impressive Construction Leaders in Tech, Making Waves in the Industry, 2...
 
Most Influential HR Leaders Leading the Corporate World, 2024 (Final file).pdf
Most Influential HR Leaders Leading the Corporate World, 2024 (Final file).pdfMost Influential HR Leaders Leading the Corporate World, 2024 (Final file).pdf
Most Influential HR Leaders Leading the Corporate World, 2024 (Final file).pdf
 
The Impact of Digital Technologies
The Impact of Digital Technologies The Impact of Digital Technologies
The Impact of Digital Technologies
 
Best digital marketing e-book form bignners
Best digital marketing e-book form bignnersBest digital marketing e-book form bignners
Best digital marketing e-book form bignners
 
Common Culture: Paul Willis Symbolic Creativity
Common Culture: Paul Willis Symbolic CreativityCommon Culture: Paul Willis Symbolic Creativity
Common Culture: Paul Willis Symbolic Creativity
 
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon GarsideInbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
 
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfResearch and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
 
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Michael Kors marketing assignment swot analysis
Michael Kors marketing assignment swot analysisMichael Kors marketing assignment swot analysis
Michael Kors marketing assignment swot analysis
 
Fueling A_B experiments with behavioral insights (1).pdf
Fueling A_B experiments with behavioral insights (1).pdfFueling A_B experiments with behavioral insights (1).pdf
Fueling A_B experiments with behavioral insights (1).pdf
 
Codes and Conventions of Film Magazine Websites.pptx
Codes and Conventions of Film Magazine Websites.pptxCodes and Conventions of Film Magazine Websites.pptx
Codes and Conventions of Film Magazine Websites.pptx
 
定制(ULV毕业证书)拉文大学毕业证成绩单原版一比一
定制(ULV毕业证书)拉文大学毕业证成绩单原版一比一定制(ULV毕业证书)拉文大学毕业证成绩单原版一比一
定制(ULV毕业证书)拉文大学毕业证成绩单原版一比一
 
The power of SEO-driven market intelligence
The power of SEO-driven market intelligenceThe power of SEO-driven market intelligence
The power of SEO-driven market intelligence
 
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
 
Influencer Marketing Power point presentation
Influencer Marketing  Power point presentationInfluencer Marketing  Power point presentation
Influencer Marketing Power point presentation
 
Storyboards for my Final Major Project Video
Storyboards for my Final Major Project VideoStoryboards for my Final Major Project Video
Storyboards for my Final Major Project Video
 
Understanding the Affiliate Marketing Channel; the short guide
Understanding the Affiliate Marketing Channel; the short guideUnderstanding the Affiliate Marketing Channel; the short guide
Understanding the Affiliate Marketing Channel; the short guide
 
top marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar Ctop marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar C
 
Codes and Conventions of Film Magazine Covers.pptx
Codes and Conventions of Film Magazine Covers.pptxCodes and Conventions of Film Magazine Covers.pptx
Codes and Conventions of Film Magazine Covers.pptx
 
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
 

iPullRank Webinar - Automated Testing For SEO With Hamlet Batista

  • 1. 1
  • 2. 2 Your Speakers AutomatedTestingforSEO Hamlet Batista CEO at RankSense Mike King Managing Director at iPullRank
  • 3. 3 Has this ever happened to you? AutomatedTestingforSEO
  • 12. 12 What is Automated Testing? AutomatedTestingforSEO
  • 13. 13 So first, let’s talk just a little bit about modern web development and how it works.
  • 14. 1414 Why Does This Matter? AutomatedTestingforSEO A lot of modern software frameworks follow this design pattern that allows for a separation of concerns between data, logic and frontend.
  • 15. 1515 Why Does This Matter? AutomatedTestingforSEO In this example the PHP framework Laravel manages the Model and the Controller and the JavaScript framework React acts as the View.
  • 16. 16 A URL is Converted into a Route AutomatedTestingforSEO URLs point to controllers which then return the right views featuring data from the right models. This is why segmented crawls are important to developers being able to implement recommendations.
  • 17. 17 Waterfall Rarely Makes Sense Anymore AutomatedTestingforSEO It’s unlikely that the websites you work on will follow a waterfall methodology. Everything is agile now.
  • 18. 18 Most Dev Teams Follow Agile Methodology AutomatedTestingforSEO Small pieces of functionality are tackled in short time frames or “sprints.”
  • 19. 1919 Continuous Integration AutomatedTestingforSEO Often engineering teams are following a Continuous Integration model where teams and individuals are autonomously pushing their code as they complete it.
  • 20. 2020
  • 21. 2121 Deployment Pipelines feature Automated Tests AutomatedTestingforSEO Deployment pipelines allow for safeguards to be put in place to ensure that everyone is following the same process to get things deployed.
  • 22. 2222 Tests Can Make the Build Fail AutomatedTestingforSEO Certain tests are deemed as critical to the infrastructure of the website and will cause the deployment process to fail and the developer has to go back and fix it before they can continue with their work.
  • 23. 2323
  • 24. 24 Automated Testing AutomatedTestingforSEO There are three flavors of testing that are most relevant to us as SEOs: Unit Tests, Integration Tests and GUI Tests.
  • 25. 2525 Unit Testing AutomatedTestingforSEO With Unit tests you are testing an individual function or procedure to ensure that it works. These are generally small and fast. Codebases can have many of these. Unit tests can be used to determine the presence of tags and attributes in structure of code to be served to the client, but not the rendered code.
  • 26. 26 Integration Testing AutomatedTestingforSEO With integration testing you’re testing how your logic comes together to build the bigger system. It can involve external data such as APIs and databases or how the various pieces of the systems work together. This is significantly slower than unit testing, but depends on how much of the system needs to be rendered in order to complete the test. Integration tests can be used to determine tags, features and content of completed HTML source being served to the client. However, there can be overlap with what can be viewed in an UI test.
  • 27. 2727 Integration Testing AutomatedTestingforSEO UI Testing is the testing of the frontend interface of your website. This is largely used for ensuring front end components work as intended. This is the slowest version of testing because it requires the page to be fully rendered. UI tests can be used to determine tags, features and content of the rendered DOM being served to the client.
  • 28. 2828 This is What Headless Browsers are Actually For AutomatedTestingforSEO Certain tests are deemed as critical to the infrastructure of the website and will cause the deployment process to fail and the developer has to go back and fix it before they can continue with their work.
  • 29. 2929 Test Driven Development AutomatedTestingforSEO Some modern developers follow this methodology wherein they write their tests first and then write their code until the tests pass. Unit tests are primarily used for this, but any type of test could be used. Note: UI Tests will dramatically slow down deployment.
  • 30. 30 How Does This Apply to SEO? AutomatedTestingforSEO
  • 31. 31 @BritneyMuller brings up a great point AutomatedTestingforSEO My goal with that post and talk is to introduce you to another way to integrate developers and ensure we’re all moving towards working better together.
  • 32. 32 Let’s go back through those horror stories.
  • 33. 3333 A Test Can Catch This AutomatedTestingforSEO Unit Test Failure Condition – Presence of meta noindex tag on functions that impact the <head>. Integration Test Failure Condition – Presence of meta noindex on routes that should not have them. This is a critical issue so this test should fail the build.
  • 34. 3434 Robots.txt Test AutomatedTestingforSEO Unit Test Failure Condition – Presence of “User-agent: * Disallow: /” on prod in a function for the robots.txt route. Integration Test Failure Condition – Presence of “User-agent: * Disallow: /” on prod in robots.txt URL. This is a critical issue so this test should fail the build.
  • 35. 35 SSR Test AutomatedTestingforSEO Integrated Test/UI Test Failure Condition - Key body content is not available in the HTML version. This one requires the rendered DOM as a comparison so it technically could be a UI and/or Integrated Test. This should definitely fail the build.
  • 36. 3636 Rel-canonical AutomatedTestingforSEO This is a critical issue so this test should fail the build. UI Test Failure Condition – URLs that should have a self-referencing canonical do not in the DOM. Integration Test Failure Condition – URLs that should have a self-referencing canonical do not in the HTML. Unit Test Failure Condition - Route does not set canonical tag on the server side.
  • 37. 37 Invalid Tag Tests AutomatedTestingforSEO This is a critical issue so this test should fail the build. UI Test Failure Condition – Rendered DOM features tags in the <head> sub-tree that are invalid. Integration Test Failure Condition – HTML features tags in the <head> that are invalid or HTML does not pass W3C validation. Unit Test Failure Condition - Function that returns the <head> features tags that don’t fit a list of valid <head> tags.
  • 38. 3838 But Testing is Not a Magic Bullet AutomatedTestingforSEO Sure, we can develop tests for to look for the presence of structured markup and to enforce metadata specifications, but when things go this wrong, you have to put your team member, project management, consultant, management hat on and get to the bottom of what went wrong.
  • 39. 3939 Who Usually Does this Work? AutomatedTestingforSEO https://searchengineland.com/get-developers-implement-seo-recommendations-280318 Developer QA Engineer
  • 40. 4040 How Can We Split the Responsibility for Unit Tests? AutomatedTestingforSEO https://searchengineland.com/catching-seo-errors-during-development-using-automated-tests-322365
  • 41. 4141 How Can We Split the Responsibility for End to End Tests? AutomatedTestingforSEO https://searchengineland.com/catching-seo-errors-during-development-using-automated-tests-322365
  • 42. 42 Doing an SEO Audit is basically doing similar work to that of a QA Engineer.
  • 43. 43 Crawling HTML is Somewhat like Integration Testing AutomatedTestingforSEO You’re looking at the results of what the software spits out when all the systems come together.
  • 44. 4444 Crawling JavaScript is more like UI Testing AutomatedTestingforSEO You’re looking at the results when the user interface is rendered.
  • 45. 4545 …And you should be comparing the differences AutomatedTestingforSEO John Hogg from iProspect shared his diff comparison Chrome extension that computes the DIFF between HTML and rendered DOM. When it’s released I encourage you to check it out.
  • 46. 4646 Your Role is To Help Plan the Tests AutomatedTestingforSEO You’ll want to work with a QA Engineer, a Product Manager or a Developer to develop test cases that can then be built into.
  • 47. 4747 Here are Few Examples AutomatedTestingforSEO These examples of tests should be enough to get you started on defining your own potential tests for SEO. Test Case ID Test Scenario Test Type Test Steps Test Data Expected Results Actual Results Pass/Fail SEO01 Presence of Meta Descriptions Unit Test Check for presence of meta description tag in HTML Page template code All URLs should have meta description Product Detail Page is missing meta description PASS SEO02 Viable Internal Links Functional Test 1.Render pages 2.Open all internal links 3.Review response codes Crawled URL data All links return 200 response code Many links to redirects and 404s FAIL SEO03 Average Page Speed Less than 2 Seconds Functional/Integ ration Test 1.Render pages 2.Capture page speed 3.Determine average page speed per page type Render all page types from URL list All page types should return an average of 2 seconds load time Homepage takes 5 seconds to load FAIL
  • 48. 48 Tools Some tools you can use to get your automated testing for SEO off the ground AutomatedTestingforSEO
  • 49. 49 Meet Jenkins, Github Actions, CircleCI AutomatedTestingforSEO If your developers are doing Continuous Integration or Continuous Delivery, it’s likely that they are using Jenkins, Github Actions, CircleCI or similar tools. https://jenkins.io/ https://circleci.com/ https://github.com/features/acti ons
  • 50. 5050 Get Failure Alerts in Slack AutomatedTestingforSEO https://plugins.jenkins.io/slack
  • 51. 5151 Or in Jenkins’ logs AutomatedTestingforSEO You could also just regularly the logs that Jenkins provides.
  • 52. 5252 Or Pipe it into MySQL AutomatedTestingforSEO Sending the Jenkins logs into MySQL gives you the opportunity to monitor and visualize failures and successes of builds with respect to SEO in a variety of ways such as through Google Data Studio.
  • 53. 5353 You’ll Also Need a Crawler AutomatedTestingforSEO You’ll want a headless crawler and a text-based crawler to spin up pages and run tests on and a fixed list of pages that represent all of the public-facing routes. https://github.com/yujiosaka/headless- chrome-crawler https://github.com/antivanov/js-crawler
  • 54. 5454 You’ll Also Need a Crawler AutomatedTestingforSEO Building your crawler with AWS Lambda, Azure Functions or Google Clouds Functions may be a great way to enjoy scale without having to manage additional servers.
  • 55. 5555 Tips On Testing AutomatedTestingforSEO Make only mission critical SEO tests potentially fail the build. Most SEO issues will be spotted in your integration tests. Include your SEO tests in every build. Keep your testing suites separate. Do all crawling in parallel. Crawl/check only one or two URLs per template to speed up checks and avoid slowing down the build
  • 56. 56 Let’s Code Some Tests ... AutomatedTestingforSEO
  • 57. 5757 AutomatedTestingforSEO Here is a simple AngularJs app that we will use to illustrate the ideas in this presentation https://github.com/ranksense/gtrends-watch Let’s Code Some Automated SEO Tests! Here is a simple AngularJs app that we will use to illustrate the ideas in this presentation https://github.com/ranksense/gtrends-watch
  • 61. 6161 Using Unit Tests to Catch Missing Meta Tags AutomatedTestingforSEO Unit tests help check every component individually performs as expected. https://github.com/ranksense/gtrends-watch/blob/master/src/app/category-topics/category-topics.component.spec.ts#L52 https://github.com/ranksense/gtrends-watch/tree/seo-tests
  • 62. 6262 Which Components Require SEO Unit Tests? AutomatedTestingforSEO Not every component is in scope of SEO (might be invisible to bots)
  • 63. 6363 The Role of End to End SEO Tests AutomatedTestingforSEO https://www.protractortest.org/ End to end/integration tests help check overall operation. User them to simulate logical crawler paths and actions.
  • 64. 6464 Which Actions Require SEO End to End Tests? AutomatedTestingforSEO Many user actions are not in scope of SEO (clicking/saving)
  • 65. 65 Checking for Rendering Problems AutomatedTestingforSEO End to end tests are ideal to check for rendering problems.
  • 66. 66 A Tricky Test: BODY HTML tags in the HEAD Does this affect Googlebot? If it does, does the fix work too? Let’s see! AutomatedTestingforSEO
  • 67. 6767 BODY HTML tags in the HEAD AutomatedTestingforSEO If the page is missing the BODY tag, Google adds it back. Good.
  • 68. 6868 BODY HTML tags in the HEAD AutomatedTestingforSEO If we add a <DIV> manually to the HTML HEAD, Google pushes our canonical to the BODY. Same as in the browser.
  • 69. 6969 BODY HTML tags in the HEAD AutomatedTestingforSEO If we add a <DIV> to the HTML HEAD using a script, the URL Inspection Tool gives an error and the page doesn’t get indexed. The browser can handle the page.
  • 70. 7070 BODY HTML tags in the HEAD AutomatedTestingforSEO If we move the SEO tags to the top of the HTML and leave the invalid <DIV>, the canonical remains in the HTML HEAD.
  • 71. 7171 BODY HTML tags in the HEAD AutomatedTestingforSEO It is properly detected. Good.
  • 72. 7272 BODY HTML tags in the HEAD AutomatedTestingforSEO The optimal solution is to move the invalid scripts and tags to the HML BODY.
  • 73. 7373 How do We Detect it? AutomatedTestingforSEO https://gist.github.com/hamletbatista/ad99891ecbcc3f56e7e65e6d01311225 Here is the Python code! https://gist.github.com/hamletbat ista/ad99891ecbcc3f56e7e65e6d 01311225 It searches for a canonical anywhere in the DOM, and prints the path where it found it. If it is not in the HEAD, we can fail the test.
  • 74. 7474 Test Coverage: Tracking Down Code Without Tests AutomatedTestingforSEO Writing tests is half the battle The other half is making sure the relevant code is always covered with tests.
  • 75. 7575 Test Coverage: Tracking Down Code Without Tests AutomatedTestingforSEO Tools like Istanbul help with this in JavaScript-driven apps. https://istanbul.js.org/
  • 76. 76 Wrapping up. Who are we and where am we from?
  • 78. 7878
  • 79. 7979 Mike King Founder & Managing Director at iPullRank @iPullRank PlanningSEOfor2021
  • 80. 8080 Hamlet Batista CEO & Founder at RankSense @hamletbatista PlanningSEOfor2021
  • 81. 8181
  • 82. 8282 PlanningSEOfor2021 @RankSense ranksense.com 33 Wood Ave South Suite 600 Iselin, NJ 08830 USA +1 866.882.2983
  • 83. 83 Q&A / Thank You! Twitter: @ipullrankagency Email: hello@ipullrank.com Website: https://ipullrank.com Get in touch if you need some help! PlanningSEOfor2021 Mike King Managing Director at iPullRank Hamlet Batista CEO & Founder at RankSense