Operating System Versions: Mac OS X version 10.5.8 or a later version of Mac OSNote To verify that your computer meets these minimum requirements, on the Apple menu, click About This Mac. Supported Operating SystemApple Mac OS X, Macintosh. Microsoft Office for Mac 2011 Service Pack 1 (14.1.0): You can download this update for free from the.Note To verify that you have installed this update, you can open any Microsoft Office 2011 application to check the version number.
- WebDrive is a file transfer client which connects with your data storage servers, including SFTP, WebDAV, and SharePoint, to allow you to access and edit content on an as-needed basis. Installation WebDrive runs on all versions of Windows and Mac (with the exception of Windows RT 32bit, which is no longer supported by Microsoft).
- And WebDrive’s instantly familiar interface lets you seamlessly work with cloud storage and corporate servers right from your desktop applications, Windows Explorer or Mac Finder. In the following example for SharePoint Online Document Library access, we utilized WebDrive to.
- How To Launch Edge Browser Using Microsoft WebDriver: Pre-requisites to use Edge with Selenium WebDriver: Windows 10; Microsoft WebDriver; Download Microsoft WebDriver from here to launch Edge Browser. Download the proper version of the driver based on your OS build number.
- Below, you will find a list of software titles available to members of the DePaul community to install on personally-owned computers. Please make sure to read the end-user license agreement (EULA) associated with each title to understand and comply with any usage restrictions set by the publisher.
- Popular free Alternatives to ExpanDrive for Windows, Mac, Linux, Web, Software as a Service (SaaS) and more. Explore 21 apps like ExpanDrive, all suggested and ranked by the AlternativeTo user community.
2019-11-27 expandrive 破解版是ExpanDrive for Mac的破解版本,是一款运行在Mac平台上的ftp软件,expandrive mac 破解版可以帮助用户直接从Finder或终端安全地访问任何远程文件服务器,非常好用,此版本已经为大家破解激活,全部功能任你使用。. 2018-6-8 Integrations to New WebDrive for Mac In Reaction to User Demand for Access to Box and Microsoft OneDrive, WebDrive 4.0 Includes New Cloud Storage Integrations ANNAPOLIS, MD-(Marketwired - Nov 12, 2014) - South River Technologies, Inc. (SRT), an innovator in secure file transfer, has released v4.0 of WebDrive for Apple Mac users, introducing new.
-->Microsoft Webdriver Chrome
The W3C WebDriver API is a platform and language-neutral interface and wire protocol allowing programs or scripts to control the behavior of a web browser, like Microsoft Edge (Chromium).
WebDriver enables developers to create automated tests that simulate user interaction. This is different from JavaScript unit tests because WebDriver has access to functionality and information that JavaScript running in the browser doesn't, and it can more accurately simulate user events or OS-level events. WebDriver can also manage testing across multiple windows, tabs and webpages in a single test session.
Here's how to get started with WebDriver for Microsoft Edge (Chromium).
Install Microsoft Edge (Chromium)
If you haven't already, install Microsoft Edge (Chromium) from this page. If you are using a pre-installed version of Microsoft Edge on your machine, verify that you have Microsoft Edge (Chromium) and not Microsoft Edge (EdgeHTML). A quick way to check is to load edge://settings/help
in the browser and confirm that the version number is 75 or higher.
Download Microsoft Edge Driver
WebDriver needs a browser-specific driver to automate each browser. For Microsoft Edge (Chromium), WebDriver needs the appropriate Microsoft Edge Driver for the build of Microsoft Edge you want to test or automate.
To find your correct build number: Launch Microsoft Edge and navigate to edge://settings/help
or click ..
> Settings > About Microsoft Edge, to view the Chromium version. Having the correct version of WebDriver for your build ensures it runs correctly.
Figure 1
The build number for Microsoft Edge Canary on January 14, 2020
Now, download the matching version of Microsoft Edge Driver from this page.
Figure 2
The Downloads section of the Microsoft Edge Driver page
Note
Microsoft Edge (EdgeHTML) does not work with Microsoft Edge Driver. To automate Microsoft Edge (EdgeHTML), you will need to download Microsoft WebDriver for Microsoft Edge (EdgeHTML).
Download a WebDriver language binding
The last component you need to download is a language-specific client driver. The language binding will translate the code you write in Python, Java, C#, Ruby, and JavaScript into commands that the Microsoft Edge Driver you downloaded in the previous section can run in Microsoft Edge (Chromium).
Download the WebDriver language binding of your choice. We highly recommend Selenium 4.00-alpha04 or later since this version has built-in support for Microsoft Edge (Chromium). However, you are able to drive Microsoft Edge (Chromium) in all earlier versions of Selenium, including the current stable Selenium 3 release.
Selenium 4.00-alpha04 and later
You can install the .NET language binding of Selenium 4.00-alpha04 here.
Using this binding, the C# snippet below constructs the EdgeOptions
object by setting is_legacy
to false
, which tells WebDriver to start Microsoft Edge (Chromium) and not Microsoft Edge (EdgeHTML). Then, it sets BinaryLocation
in EdgeOptions
to the install location of Microsoft Edge (Chromium). Lastly, it creates an EdgeDriverService
, again with is_legacy
set to false
, before creating a new EdgeDriver
by passing it the EdgeDriverService
and EdgeOptions
.
Note
When constructing the EdgeOptions
object, if you don't pass it false
, by default is_legacy
is set to true
. This ensures that all your current Microsoft Edge Driver tests will run without modification against Microsoft Edge (EdgeHTML). You must set is_legacy
to false
and use the correct driver for your test to run successfully in Microsoft Edge (Chromium).
Caution
You must manually create EdgeDriverService
as shown in the C# snippet above. If you let EdgeDriver
create a service for you, it will create a Microsoft Edge (EdgeHTML) service and not the Microsoft Edge (Chromium) service that you need to automate or test Microsoft Edge (Chromium).
Selenium 4.00-alpha03 and earlier
If you have downloaded a Selenium language binding that is v4.00-alpha03 or earlier, follow the steps below to drive Microsoft Edge (Chromium):
- Create an
EdgeDriverService
that points to msedgedriver.exe which you downloaded in the Download Microsoft Edge Driver section. - Start the service manually.
- Create a
DesiredCapabilites
object to configure the Microsoft Edge Driver session. To launch Microsoft Edge (Chromium), you must create anms:edgeOptions
object with abinary
property that points to the installed location of Microsoft Edge (Chromium). - Create a
RemoteWebDriver
that connects to theEdgeDriverService
using theDesiredCapabilities
object. - When your test or automation is done and you've called
driver.Close()
, shut down theEdgeDriverService
manually withservice.Dispose()
.
The C# snippet below, by following these steps, launches Microsoft Edge (Chromium), navigates to https://bing.com
, and then waits 2 seconds for the page to load before closing the RemoteWebDriver
instance and shutting down the EdgeDriverService
.
Important
If you were previously automating or testing Microsoft Edge (Chromium) by using ChromeDriver
and ChromeOptions
, your WebDriver code will not run successfully against Microsoft Edge 80 or later. This is a breaking change and Microsoft Edge (Chromium) no longer accepts these commands. You must change your tests to use EdgeOptions
and Microsoft Edge Driver.
Other ways to set up WebDriver
Chocolatey
If you are using Chocolatey as your package manager, you can also get Microsoft Edge Driver by running this command:
Read more about this package on Chocolatey here.
Docker
If you are using Docker, you can get a pre-configured image with Microsoft Edge (Chromium) and Microsoft Edge Driver already installed by running this command:
Check out this container on Docker Hub here.
Feedback
We're eager to hear your feedback about using WebDriver, Selenium, and Microsoft Edge! Use the Feedback icon in the Microsoft Edge DevTools or tweet @EdgeDevTools to let us know what you think.
Figure 2
The Feedback icon in the Microsoft Edge DevTools
-->The W3C WebDriver API is a platform and language-neutral interface and wire protocol allowing programs or scripts to control the behavior of a web browser.
WebDriver enables developers to create automated tests that simulate user interaction. This is different from JavaScript unit tests because WebDriver has access to functionality and information that JavaScript running in the browser doesn't, and it can more accurately simulate user events or OS-level events. WebDriver can also manage testing across multiple windows, tabs and webpages in a single test session.
Here's how to get started with WebDriver for Microsoft Edge (EdgeHTML).
The Microsoft Edge (EdgeHTML) implementation of WebDriver supports both the W3C WebDriver specification and the JSON Wire Protocol for backwards compatibility with existing tests.
Getting started with WebDriver for Microsoft Edge (EdgeHTML)
- Install Windows 10.
- Download the appropriate Microsoft WebDriver server for your build of Windows and Microsoft Edge (EdgeHTML).
- Download the WebDriver language binding of your choice. All Selenium language bindings support Microsoft Edge (EdgeHTML).
Note
You can find help, report issues, and file feature requests at Microsoft Edge (EdgeHTML) Feedback & Support.
Using WebDriver
To get started using WebDriver with Microsoft Edge (EdgeHTML), check out these samples:
- C# code sample for opening a browser window, navigating to bing.com and searching for 'webdriver' (GitHub Gist).
WebDriver server command line flags
List of command line flags for the WebDriver server.
Name | Description | Available Release |
---|---|---|
host | Host IP to use for the WebDriver server (default: localhost) | 14393 |
port | Port to use for the WebDriver server (default: 17556) | 14393 |
package | ApplicationUserModelId (AUMID) for the application to be launched by the WebDriver server | 14393 |
verbose | Outputs requests received and responses sent by the WebDriver server | 14393 |
silent | Outputs nothing | 15063 |
version | Outputs the version of MicrosoftWebDriver.exe | 17763 |
w3c | Use W3C WebDriver protocol (default option) | 17763 |
jwp | Use JSON Wire protocol | 17763 |
cleanup | Cleanup temporary data and registry keys set by the WebDriver server for --package. Other parameters are ignored | 17763 |
W3C WebDriver
The support on a per command basis for the W3C WebDriver Specification.
Capabilities
Capability | Key | Status | Available Release |
---|---|---|---|
Browser Name | 'browserName' | Supported | 17763 |
Browser Version | 'browserVersion' | Supported | 17763 |
Platform Name | 'platformName' | Supported | 17763 |
Accept Insecure TLS Certificates | 'acceptInsecureCerts' | Not Supported | N/A |
Page Load Strategy | 'pageLoadStrategy' | Supported | 17763 |
Proxy Configuration | 'proxy' | Not Supported | N/A |
Window Dimensioning/Positioning | 'setWindowRect' | Supported | 17763 |
Session Timeouts Configuration | 'timeouts' | Supported | 17763 |
Unhandled Prompt Behavior | 'unhandledPromptBehavior' | Partially Supported | 17763 |
InPrivate | 'ms:inPrivate' | Supported | 17763 |
Extension Paths | 'ms:extensionPaths' | Supported | 17763 |
Start Page | 'ms:startPage' | Supported | 17763 |
Locator Strategies
Locator Strategy | Status | Available Release |
---|---|---|
CSS Selectors | Supported | 17763 |
Link Text | Supported | 17763 |
Partial Link Text | Supported | 17763 |
Tag Name | Supported | 17763 |
XPath | Supported | 17763 |
Commands
Microsoft Webdrive Mac Free
HTTP Method | URI Template | Command | Status | Available Release |
---|---|---|---|---|
POST | /session | New Session | Supported | 17763 |
DELETE | /session/{session id} | Delete Session | Supported | 17763 |
GET | /status | Status | Supported | 17763 |
GET | /session/{session id}/timeouts | Get Timeouts | Supported | 17763 |
POST | /session/{session id}/timeouts | Set Timeouts | Supported | 17763 |
POST | /session/{session id}/url | Navigate To | Supported | 17763 |
GET | /session/{session id}/url | Get Current URL | Supported | 17763 |
POST | /session/{session id}/back | Back | Supported | 17763 |
POST | /session/{session id}/forward | Forward | Supported | 17763 |
POST | /session/{session id}/refresh | Refresh | Supported | 17763 |
GET | /session/{session id}/title | Get Title | Supported | 17763 |
GET | /session/{session id}/window | Get Window Handle | Supported | 17763 |
DELETE | /session/{session id}/window | Close Window | Supported | 17763 |
POST | /session/{session id}/window | Switch to Window | Supported | 17763 |
GET | /session/{session id}/window/handles | Get Window Handles | Supported | 17763 |
POST | /session/{session id}/frame | Switch To Frame | Supported | 17763 |
POST | /session/{session id}/frame/parent | Switch to Parent Frame | Supported | 17763 |
GET | /session/{session id}/window/rect | Get Window Rect | Supported | 17763 |
POST | /session/{session id}/window/rect | Set Window Rect | Supported | 17763 |
POST | /session/{session id}/window/maximize | Maximize Window | Supported | 17763 |
POST | /session/{session id}/window/minimize | Minimize Window | Supported | 17763 |
POST | /session/{session id}/window/fullscreen | Fullscreen Window | Not Supported | N/A |
GET | /session/{session id}/element/active | Get Active Element | Supported | 17763 |
POST | /session/{session id}/element | Find Element | Supported | 17763 |
POST | /session/{session id}/elements | Find Elements | Supported | 17763 |
POST | /session/{session id}/element/{element id}/element | Find Element From Element | Supported | 17763 |
POST | /session/{session id}/element/{element id}/elements | Find Elements From Element | Supported | 17763 |
GET | /session/{session id}/element/{element id}/selected | Is Element Selected | Supported | 17763 |
GET | /session/{session id}/element/{element id}/attribute/{name} | Get Element Attribute | Supported | 17763 |
GET | /session/{session id}/element/{element id}/property/{name} | Get Element Property | Supported | 17763 |
GET | /session/{session id}/element/{element id}/css/{property name} | Get Element CSS Value | Supported | 17763 |
GET | /session/{session id}/element/{element id}/text | Get Element Text | Supported | 17763 |
GET | /session/{session id}/element/{element id}/name | Get Element Tag Name | Supported | 17763 |
GET | /session/{session id}/element/{element id}/rect | Get Element Rect | Supported | 17763 |
GET | /session/{session id}/element/{element id}/enabled | Is Element Enabled | Supported | 17763 |
POST | /session/{session id}/element/{element id}/click | Element Click | Supported | 17763 |
POST | /session/{session id}/element/{element id}/clear | Element Clear | Supported | 17763 |
POST | /session/{session id}/element/{element id}/sendKeys | Element Send Keys | Supported | 17763 |
GET | /session/{session id}/source | Get Page Source | Supported | 17763 |
POST | /session/{session id}/execute/sync | Execute Script | Supported | 17763 |
POST | /session/{session id}/execute/async | Execute Async Script | Supported | 17763 |
GET | /session/{session id}/cookie | Get All Cookies | Supported | 17763 |
GET | /session/{session id}/cookie/{name} | Get Named Cookie | Supported | 17763 |
POST | /session/{session id}/cookie | Add Cookie | Supported | 17763 |
DELETE | /session/{session id}/cookie/{name} | Delete Cookie | Supported | 17763 |
DELETE | /session/{session id}/cookie | Delete All Cookies | Supported | 17763 |
POST | /session/{session id}/actions | Perform Actions | Supported | 17763 |
DELETE | /session/{session id}/actions | Release Actions | Supported | 17763 |
POST | /session/{session id}/alert/dismiss | Dismiss Alert | Supported | 17763 |
POST | /session/{session id}/alert/accept | Accept Alert | Supported | 17763 |
GET | /session/{session id}/alert/text | Get Alert Text | Supported | 17763 |
POST | /session/{session id}/alert/text | Send Alert Text | Supported | 17763 |
GET | /session/{session id}/screenshot | Take Screenshot | Supported | 17763 |
GET | /session/{session id}/screenshot/{element id} | Take Element Screenshot | Supported | 17763 |
JSON Wire Protocol
The support on a per command basis for the JSON Wire Protocol.
Chrome Webdriver
Commands
Microsoft Webdrive Mac Pro
HTTP Method | Path | Status | Available Release |
---|---|---|---|
GET | /status | Supported | 10240 |
POST | /session | Supported | 10240 |
GET | /sessions | Supported | 10240 |
GET | /session/:sessionId | Supported | 10240 |
DELETE | /session/:sessionId | Supported | 10240 |
POST | /session/:sessionId/timeouts | Supported | 10240 |
POST | /session/:sessionId/timeouts/async_script | Not Supported | N/A |
POST | /session/:sessionId/timeouts/implicit_wait | Supported | 10586 |
GET | /session/:sessionId/window_handle | Supported | 10586 |
GET | /session/:sessionId/window_handles | Supported | 10586 |
GET | /session/:sessionId/url | Supported | 10240 |
POST | /session/:sessionId/url | Supported | 10240 |
POST | /session/:sessionId/forward | Supported | 10240 |
POST | /session/:sessionId/back | Supported | 10240 |
POST | /session/:sessionId/refresh | Supported | 10240 |
POST | /session/:sessionId/execute | Supported | 10240 |
POST | /session/:sessionId/execute_async | Supported | 10586 |
GET | /session/:sessionId/screenshot | Supported | 10240 |
GET | /session/:sessionId/ime/available_engines | Not Supported | N/A |
GET | /session/:sessionId/ime/active_engine | Not Supported | N/A |
GET | /session/:sessionId/ime/activated | Not Supported | N/A |
POST | /session/:sessionId/ime/deactivate | Not Supported | N/A |
POST | /session/:sessionId/ime/activate | Not Supported | N/A |
POST | /session/:sessionId/frame | Supported | 10586 |
POST | /session/:sessionId/frame/parent | Supported | 10586 |
POST | /session/:sessionId/window | Supported | 10586 |
DELETE | /session/:sessionId/window | Supported | 10586 |
POST | /session/:sessionId/window/:windowHandle/size | Supported | 10586 |
GET | /session/:sessionId/window/:windowHandle/size | Supported | 10586 |
POST | /session/:sessionId/window/:windowHandle/position | Supported | 10586 |
GET | /session/:sessionId/window/:windowHandle/position | Supported | 10586 |
GET | /session/:sessionId/window/:windowHandle/maximize | Supported | 10586 |
GET | /session/:sessionId/cookie | Supported | 10586 |
POST | /session/:sessionId/cookie | Supported | 10240 |
DELETE | /session/:sessionId/cookie | Supported | 10586 |
DELETE | /session/:sessionId/cookie/:name | Supported | 10240 |
GET | /session/:sessionId/source | Supported | 10586 |
GET | /session/:sessionId}/title | Supported | 10240 |
POST | /session/:sessionId/element | Supported | 10586 |
POST | /session/:sessionId/elements | Supported | 10586 |
POST | /session/:sessionId/element/active | Supported | 10586 |
GET | /session/:sessionId/element/:id | Not Supported | N/A |
POST | /session/:sessionId/element/:id/element | Supported | 10586 |
POST | /session/:sessionId/element/:id/elements | Supported | 10586 |
POST | /session/:sessionId/element/:id/click | Supported | 10240 |
POST | /session/:sessionId/element/:id/submit | Supported | 10586 |
GET | /session/:sessionId/element/:id/text | Supported | 10240 |
POST | /session/:sessionId/element/:id/value | Supported | 10240 |
POST | /session/:sessionId/keys | Supported | 10586 |
GET | /session/:sessionId/element/:id/name | Supported | 10240 |
POST | /session/:sessionId/element/:id/clear | Supported | 10240 |
GET | /session/:sessionId/element/:id/selected | Supported | 10240 |
GET | /session/:sessionId/element/:id/enabled | Supported | 10240 |
GET | /session/:sessionId/element/:id/attribute/:name | Supported | 10240 |
GET | /session/:sessionId/element/:id/equals/:other | Supported | 10586 |
GET | /session/:sessionId/element/:id/displayed | Supported | 10240 |
GET | /session/:sessionId/element/:id/location | Supported | 10586 |
GET | /session/:sessionId/element/:id/location_in_view | Supported | 10586 |
GET | /session/:sessionId/element/:id/size | Supported | 10586 |
GET | /session/:sessionId/element/:id/css/:propertyName | Supported | 10240 |
GET | /session/:sessionId/orientation | Not Supported | N/A |
POST | /session/:sessionId/orientation | Not Supported | N/A |
GET | /session/:sessionId/alert_text | Supported | 10240 |
POST | /session/:sessionId/alert_text | Supported | 10586 |
POST | /session/:sessionId/accept_alert | Supported | 10240 |
POST | /session/:sessionId/dismiss_alert | Supported | 10240 |
POST | /session/:sessionId/moveto | Supported | 10586 |
POST | /session/:sessionId/click | Supported | 10240 |
POST | /session/:sessionId/buttondown | Supported | 10586 |
POST | /session/:sessionId/buttonup | Supported | 10586 |
POST | /session/:sessionId/doubleclick | Supported | 10586 |
POST | /session/:sessionId/touch/click | Not Supported | N/A |
POST | /session/:sessionId/touch/down | Not Supported | N/A |
POST | /session/:sessionId/touch/up | Not Supported | N/A |
POST | /session/:sessionId/touch/move | Not Supported | N/A |
POST | /session/:sessionId/touch/scroll | Not Supported | N/A |
POST | /session/:sessionId/touch/scroll | Not Supported | N/A |
POST | /session/:sessionId/touch/doubleclick | Not Supported | N/A |
POST | /session/:sessionId/touch/longclick | Not Supported | N/A |
POST | /session/:sessionId/touch/flick | Not Supported | N/A |
POST | /session/:sessionId/touch/flick | Not Supported | N/A |
GET | /session/:sessionId/location | Supported | 10586 |
POST | /session/:sessionId/location | Supported | 10586 |
GET | /session/:sessionId/local_storage | Supported | 10586 |
POST | /session/:sessionId/local_storage | Supported | 10586 |
DELETE | /session/:sessionId/local_storage | Supported | 10586 |
GET | /session/:sessionId/local_storage/key/:key | Supported | 10586 |
DELETE | /session/:sessionId/local_storage/key/:key | Supported | 10586 |
GET | /session/:sessionId/local_storage/size | Supported | 10586 |
GET | /session/:sessionId/session_storage | Supported | 10586 |
POST | /session/:sessionId/session_storage | Supported | 10586 |
DELETE | /session/:sessionId/session_storage | Supported | 10586 |
GET | /session/:sessionId/session_storage/key/:key | Supported | 10586 |
DELETE | /session/:sessionId/session_storage/key/:key | Supported | 10586 |
GET | /session/:sessionId/session_storage/size | Supported | 10586 |
GET | /session/:sessionId/log | Not Supported | N/A |
GET | /session/:sessionId/log/types | Not Supported | N/A |
GET | /session/:sessionId/application_cache/status | Supported | 10586 |