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) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον DataKund, και η κύρια λειτουργία του είναι "Records your actions in browser and writes a selenium script. You don't have to worry about html tags or deal in element inspection".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Selenium Auto Code Generator (Python)
Λήψη αρχείων επέκτασης Selenium Auto Code Generator (Python) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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) |
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 } ] } |