v0.55.8

Try our Chrome extension

Chrome store icon Chrome Webstore

Easily add the current web-page from your browser directly into your changedetection.io tool, more great features coming soon!

Changedetection.io needs your support!

You can help us by supporting changedetection.io on these platforms;

The more popular changedetection.io is, the more time we can dedicate to adding amazing features!

Many thanks :)

changedetection.io team

Not yet seconds ago
            False
        
Not yet seconds ago
Current erroring screenshot from most recent request

Triggered text Ignored text Blocked text

1 hour ago
    Skip to content

      Navigation Menu

            Sign in Appearance settings
                * Platform
                        + AI CODE CREATION
                            o GitHub Copilot Write better code with AI
                            o GitHub Copilot app Direct agents from issue to merge
                            o MCP Registry Integrate external tools
                        + DEVELOPER WORKFLOWS
                            o Actions Automate any workflow
                            o Codespaces Instant dev environments
                            o Issues Plan and track work
                            o Code Review Manage code changes
                            o Code Quality Enforce quality at merge
                        + APPLICATION SECURITY
                            o GitHub Advanced Security Find and fix vulnerabilities
                            o Code security Secure your code as you build
                            o Secret protection Stop leaks before they start
                        + EXPLORE
                            o Why GitHub
                            o Documentation
                            o Blog
                            o Changelog
                            o Marketplace
                      View all features
                * Solutions
                        + BY COMPANY SIZE
                            o Enterprises
                            o Small and medium teams
                            o Startups
                            o Nonprofits
                        + BY USE CASE
                            o App Modernization
                            o DevSecOps
                            o DevOps
                            o CI/CD
                            o View all use cases
                        + BY INDUSTRY
                            o Healthcare
                            o Financial services
                            o Manufacturing
                            o Government
                            o View all industries
                      View all solutions
                * Resources
                        + EXPLORE BY TOPIC
                            o AI
                            o Software Development
                            o DevOps
                            o Security
                            o View all topics
                        + EXPLORE BY TYPE
                            o Customer stories
                            o Events & webinars
                            o Ebooks & reports
                            o Business insights
                            o GitHub Skills
                        + SUPPORT & SERVICES
                            o Documentation
                            o Customer support
                            o Community forum
                            o Trust center
                            o Partners
                      View all resources
                * Open Source
                        + COMMUNITY
                            o GitHub Sponsors Fund open source developers
                        + PROGRAMS
                            o Security Lab
                            o Maintainer Community
                            o Accelerator
                            o GitHub Stars
                            o Archive Program
                        + REPOSITORIES
                            o Topics
                            o Trending
                            o Collections
                * Enterprise
                        + ENTERPRISE SOLUTIONS
                            o Enterprise platform AI-powered developer platform
                        + AVAILABLE ADD-ONS
                            o GitHub Advanced Security Enterprise-grade security features
                            o Copilot for Business Enterprise-grade AI features
                            o Premium Support Enterprise-grade 24/7 support
              * Pricing
                Type / to search
                Sign in
              Sign up Appearance settings
      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              Uh oh!

              There was an error while loading. Please reload this page.

              microsoft / playwright-python Public
              * Notifications You must be signed in to change notification settings
              * Fork 1.2k
                * Star 14.9k
          * Code
          * Issues 1
          * Pull requests 2
          * Actions
          * Security and quality 0
          * Insights
          Additional navigation options
                  * Code
                  * Issues
                  * Pull requests
                  * Actions
                  * Security and quality
                  * Insights
                                              main
                                          Branches Tags
                                            Go to file
                                        Code
                                          Open more actions menu

                                        Folders and files

                                          Name                                      Name                                        Last commit message    Last commit date
                                            Latest commit                         
                                                                                  
                                                History                           
                                                                                  
                                                1,077 Commits                     
                                                  1,077 Commits                   
                                                  .azure-pipelines                          .azure-pipelines                                                           
                                                  .claude/ skills/ playwright-roll          .claude/ skills/ playwright-roll                                           
                                                  .github                                   .github                                                                    
                                                  examples/ todomvc                         examples/ todomvc                                                          
                                                  playwright                                playwright                                                                 
                                                  scripts                                   scripts                                                                    
                                                  tests                                     tests                                                                      
                                                  utils                                     utils                                                                      
                                                  .gitattributes                            .gitattributes                                                             
                                                  .gitignore                                .gitignore                                                                 
                                                  .pre-commit-config.yaml                   .pre-commit-config.yaml                                                    
                                                  CLAUDE.md                                 CLAUDE.md                                                                  
                                                  CODE_OF_CONDUCT.md                        CODE_OF_CONDUCT.md                                                         
                                                  CONTRIBUTING.md                           CONTRIBUTING.md                                                            
                                                  DRIVER_VERSION                            DRIVER_VERSION                                                             
                                                  LICENSE                                   LICENSE                                                                    
                                                  NODE_VERSION                              NODE_VERSION                                                               
                                                  README.md                                 README.md                                                                  
                                                  ROLLING.md                                ROLLING.md                                                                 
                                                  SECURITY.md                               SECURITY.md                                                                
                                                  SUPPORT.md                                SUPPORT.md                                                                 
                                                  local-requirements.txt                    local-requirements.txt                                                     
                                                  pyproject.toml                            pyproject.toml                                                             
                                                  requirements.txt                          requirements.txt                                                           
                                                  setup.cfg                                 setup.cfg                                                                  
                                                  setup.py                                  setup.py                                                                   
                                            View all files                        
                                          

                                              Repository files navigation

                                                * 
                                                * README
                                                * Code of conduct
                                                * Contributing
                                                * Apache-2.0 license
                                                * Security
                                                More items

                                                🎭 Playwright for Python

                                              Playwright is a Python library to automate Chromium, Firefox and WebKit browsers with a single API. Playwright delivers automation that is ever-green, capable, reliable and fast. See how Playwright is better.

                                                                      Linux  macOS  Windows
                                              Chromium 151.0.7922.34    ✅      ✅       ✅   
                                              WebKit 26.5               ✅      ✅       ✅   
                                              Firefox 153.0             ✅      ✅       ✅   
                                              

                                                Documentation

                                              https://playwright.dev/python/docs/intro

                                                API Reference

                                              https://playwright.dev/python/docs/api/class-playwright

                                                Example

                                                from playwright.sync_api import sync_playwright
                                                
                                                with sync_playwright() as p:
                                                    for browser_type in [p.chromium, p.firefox, p.webkit]:
                                                        browser = browser_type.launch()
                                                        page = browser.new_page()
                                                        page.goto('http://playwright.dev')
                                                        page.screenshot(path=f'example- { browser_type . name } .png')
                                                        browser.close()
                                                import asyncio
                                                from playwright.async_api import async_playwright
                                                
                                                async def main():
                                                    async with async_playwright() as p:
                                                        for browser_type in [p.chromium, p.firefox, p.webkit]:
                                                            browser = await browser_type.launch()
                                                            page = await browser.new_page()
                                                            await page.goto('http://playwright.dev')
                                                            await page.screenshot(path=f'example- { browser_type . name } .png')
                                                            await browser.close()
                                                
                                                asyncio.run(main())

                                                Other languages

                                              More comfortable in another programming language? Playwright is also available in

                                                * Node.js (JavaScript / TypeScript),
                                                * .NET,
                                                * Java.

                                        About

                                        Python version of the Playwright testing and automation library.

                                          playwright.dev/python/

                                        Topics

                                          chromiumfirefoxplaywrightwebkit

                                        Resources

                                          Readme
                                          Apache-2.0 license

                                        Code of conduct

                                          Code of conduct

                                        Contributing

                                          Contributing

                                        Security policy

                                          Security policy
                                          Activity
                                          Custom properties

                                        Stars

                                          14.9k stars

                                        Watchers

                                          155 watching

                                        Forks

                                          1.2k forks
                                          Report repository

                                        Releases

                                        Used by

                                        Contributors

                                        Languages

    Footer

        © 2026 GitHub, Inc.

      Footer navigation

        * Terms
        * Privacy
        * Security
        * Status
        * Community
        * Docs
        * Contact
        * Manage cookies
        * Do not share my personal information
      You can’t perform that action at this time.
For now, Differences are performed on text, not graphically, only the latest screenshot is available.

Screenshot requires a Content Fetcher ( Sockpuppetbrowser, selenium, etc ) that supports screenshots.