मुख्य कॉन्टेंट में जाएँ

Driver Binaries

To run automation based on the WebDriver protocol you need to have browser drivers set up that translate the automation commands and are able execute them in the browser. With WebdriverIO v8.14 and above there is no need to manually download and setup any browser drivers anymore as this is handled by WebdriverIO. You only need to have a browser installed, that's it!

The following describes how you can still set up each driver individually. आप awesome-selenium रीडमे में सभी ड्राइवरों के साथ एक सूची पा सकते हैं।

बख्शीश

If you are looking to set up mobile and other UI platforms, have a look into our Appium Setup guide.

क्रोमड्राइवर

क्रोम को स्वचालित करने के लिए आप Chromedriver को सीधे प्रोजेक्ट वेबसाइट या NPM पैकेज के माध्यम से डाउनलोड कर सकते हैं:

npm install -g chromedriver

इसके बाद आप इसे शुरू कर सकते हैं:

chromedriver --port=4444 --verbose

गेकोड्राइवर

फ़ायरफ़ॉक्स को स्वचालित करने के लिए अपने पर्यावरण के लिए geckodriver का नवीनतम संस्करण डाउनलोड करें और इसे अपनी प्रोजेक्ट निर्देशिका में अनपैक करें:

Note: Other geckodriver releases are available here. After download you can start the driver via:

/path/to/binary/geckodriver --port 4444

Edgedriver

You can download the driver for Microsoft Edge on the project website or as NPM package via:

npm install -g edgedriver
edgedriver --version # prints: Microsoft Edge WebDriver 115.0.1901.203 (a5a2b1779bcfe71f081bc9104cca968d420a89ac)

Safaridriver

सफ़ारीड्राइवर आपके MacOS पर पहले से इंस्टॉल आता है और इसके द्वारा सीधे शुरू किया जा सकता है:

सफारीड्राइवर -पी 4444

Welcome! How can I help?

WebdriverIO AI Copilot