முக்கிய உள்ளடக்கத்திற்கு செல்க

டிரைவர் பைனரிஸ்

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 README இல் அனைத்து டிரைவர் பட்டியலைக் காணலாம்.

டிப்

நீங்கள் மொபைல் மற்றும் பிற UI இயங்குதளங்களை அமைக்க விரும்பினால், எங்கள் Appium Setup வழிகாட்டியைப் பார்க்கவும்.

Chromedriver

Chrome ஐ தானியங்குபடுத்த, நீங்கள் Chromedriver ஐ நேரடியாக project website ல் அல்லது NPM தொகுப்புமூலம் பதிவிறக்கம் செய்யலாம்:

npm install -g chromedriver

பின்னர் நீங்கள் இதைத் தொடங்கலாம்:

chromedriver --port=4444 --verbose

Geckodriver

Firefox ஐ தானியக்கமாக்க, உங்கள் என்விரான்மென்டிக்கு ஏற்ற 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

Safaridriver உங்கள் MacOS இல் முன்பே நிறுவப்பட்டுள்ளது மற்றும் இதன் மூலம் நேரடியாகத் தொடங்கலாம்:

safaridriver -p 4444

Welcome! How can I help?

WebdriverIO AI Copilot