Page Modeller (Selenium, Robot Framework etc)

Browser DevTools extension for modelling web pages for automation.

Что такое Page Modeller (Selenium, Robot Framework etc)?

Page Modeller (Selenium, Robot Framework etc) - это расширение Chrome, разработанное Dan Humphrey, и его основная функция - "Browser DevTools extension for modelling web pages for automation.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Page Modeller (Selenium, Robot Framework etc)

Скачайте файлы расширений Page Modeller (Selenium, Robot Framework etc) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The Page Modeller extension enables developers to scan a web page and generate page object style code for various tools, languages and frameworks and test the UI locators in the browser.

Currently supported tools and languages are:

* Selenium WebDriver Java
* Selenium WebDriver C#
* Puppeteer
* Robot Framework
* Protractor
* Protractor TypeScript

Feel free to propose new functionality and additional frameworks here: https://github.com/danhumphrey/page-modeller/issues

This extension is being actively developed and is considered a beta release.                    

Основная информация о расширении

Название Page Modeller (Selenium, Robot Framework etc) Page Modeller (Selenium, Robot Framework etc)
ID ejgkdhekcepfgdghejpkmbfjgnioejak
Официальный URL https://chromewebstore.google.com/detail/page-modeller-selenium-ro/ejgkdhekcepfgdghejpkmbfjgnioejak
Описание Browser DevTools extension for modelling web pages for automation.
Размер файла 828 KB
Количество установок 1,700
Текущая Версия 2.1.0
Последнее Обновление 2020-11-01
Дата публикации 2020-05-22
Рейтинг 5.00/5 Всего 5 оценок
Разработчик Dan Humphrey
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/danhumphrey/page-modeller
URL страницы помощи https://github.com/danhumphrey/page-modeller/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Modeller (Selenium, Robot Framework etc)",
    "short_name": "PageModeller",
    "description": "Browser DevTools extension for modelling web pages for automation.",
    "version": "2.1.0",
    "version_name": "2.1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon_16_grey.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "Page Modeller",
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/icon_16_grey.png",
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "devtools_page": "devtools-page.html",
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}