Selenium Auto Code Generator (Python)

Records your actions in browser and writes a selenium script. You don't have to worry about html tags or deal in element inspection

Selenium Auto Code Generator (Python)란 무엇입니까?

Selenium Auto Code Generator (Python)은(는) DataKund에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Records your actions in browser and writes a selenium script. You don't have to worry about html tags or deal in element inspection"입니다.

확장 프로그램 스크린샷

screenshot

Selenium Auto Code Generator (Python) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Record your actions in the browser like
Click, Scrape, Type, Open Link etc. 
Selenium script will be written for you

You don't have to inspect HTML elements or find out which selectors to use
All of that is done for you by this extension
Also when HTML page changes in future, the code will automatically adapt itself to changes so you don't have to worry about that
Pro-ID is self healing element ID which saves the element info in the cloud & changes according to HTML changes


Selenium
https://pypi.org/project/selenium/
Webdriver Manager
https://pypi.org/project/webdriver-manager/
Element Manager
https://pypi.org/project/elements-manager/                    

확장 프로그램 기본 정보

이름 Selenium Auto Code Generator (Python) Selenium Auto Code Generator (Python)
ID ocimgcpcnobcnmclomhhmjidgoiekeaf
공식 URL https://chromewebstore.google.com/detail/selenium-auto-code-genera/ocimgcpcnobcnmclomhhmjidgoiekeaf
설명 Records your actions in browser and writes a selenium script. You don't have to worry about html tags or deal in element inspection
파일 크기 924 KB
설치 횟수 1,755
현재 버전 2.1
최근 업데이트 2024-02-21
출시 날짜 2022-09-04
평점 5.00/5 총 2 개의 평점
개발자 DataKund
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pypi.org/project/selenium-pro/
개인정보 보호 정책 페이지 URL https://datakunds.notion.site/Privacy-Policy-c431f1adc63846d78da07264b2db3c84
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Selenium Auto Code Generator (Python)",
    "description": "Records your actions in browser and writes a selenium script. You don't have to worry about html tags or deal in element inspection",
    "version": "2.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "bg-loader.js"
    },
    "permissions": [
        "webNavigation",
        "storage",
        "tabs",
        "clipboardWrite",
        "notifications",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/4.7.0\/css\/font-awesome.min.css",
        "https:\/\/accounts.google.com\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "*:\/\/*\/*",
        "https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/highlight.js\/10.0.3\/highlight.min.js"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "images\/DKP2.png"
    },
    "icons": {
        "16": "\/images\/DKP2.png",
        "32": "\/images\/DKP2.png",
        "48": "\/images\/DKP2.png",
        "128": "\/images\/DKP2.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https:\/\/apis.google.com https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/highlight.js\/10.0.3\/highlight.min.js;"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/jquery.js",
                "aws.js",
                "s3upload.js",
                "content.js"
            ],
            "all_frames": true
        }
    ]
}