All Projects → microsoft → Edge Selenium Tools

microsoft / Edge Selenium Tools

Licence: apache-2.0
An updated EdgeDriver implementation for Selenium 3 with newly-added support for Microsoft Edge (Chromium).

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Edge Selenium Tools

Cdp4j
cdp4j - Chrome DevTools Protocol for Java
Stars: ✭ 232 (+465.85%)
Mutual labels:  automation, selenium, webdriver, chromium
Thirtyfour
Selenium WebDriver client for Rust, for automated testing of websites
Stars: ✭ 191 (+365.85%)
Mutual labels:  automation, selenium, webdriver
Undetected Chromedriver
Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)
Stars: ✭ 365 (+790.24%)
Mutual labels:  automation, selenium, webdriver
Python Scripts
Collection of Various Python Script's.💻
Stars: ✭ 195 (+375.61%)
Mutual labels:  automation, selenium, webdriver
Pychromeless
Python Lambda Chrome Automation (naming pending)
Stars: ✭ 219 (+434.15%)
Mutual labels:  automation, selenium, chromium
Wdio Workshop
WebdriverIO Workshop
Stars: ✭ 20 (-51.22%)
Mutual labels:  automation, selenium, webdriver
Splinter
splinter - python test framework for web applications
Stars: ✭ 2,476 (+5939.02%)
Mutual labels:  automation, selenium, webdriver
Playwright Go
Playwright for Go a browser automation library to control Chromium, Firefox and WebKit with a single API.
Stars: ✭ 272 (+563.41%)
Mutual labels:  automation, selenium, chromium
Golem
A complete test automation tool
Stars: ✭ 441 (+975.61%)
Mutual labels:  automation, selenium, webdriver
Webdrivers
Keep your Selenium WebDrivers updated automatically
Stars: ✭ 466 (+1036.59%)
Mutual labels:  selenium, webdriver
Docker Selenium
Docker images for the Selenium Grid Server
Stars: ✭ 5,476 (+13256.1%)
Mutual labels:  selenium, webdriver
Infospider
INFO-SPIDER 是一个集众多数据源于一身的爬虫工具箱🧰,旨在安全快捷的帮助用户拿回自己的数据,工具代码开源,流程透明。支持数据源包括GitHub、QQ邮箱、网易邮箱、阿里邮箱、新浪邮箱、Hotmail邮箱、Outlook邮箱、京东、淘宝、支付宝、中国移动、中国联通、中国电信、知乎、哔哩哔哩、网易云音乐、QQ好友、QQ群、生成朋友圈相册、浏览器浏览历史、12306、博客园、CSDN博客、开源中国博客、简书。
Stars: ✭ 5,984 (+14495.12%)
Mutual labels:  automation, selenium
Playwright Sharp
.NET version of the Playwright testing and automation library.
Stars: ✭ 459 (+1019.51%)
Mutual labels:  automation, chromium
Minkselenium2driver
Selenium2 (webdriver) driver for Mink framework
Stars: ✭ 461 (+1024.39%)
Mutual labels:  selenium, webdriver
Webdriver
Remote control interface that enables introspection and control of user agents.
Stars: ✭ 546 (+1231.71%)
Mutual labels:  automation, webdriver
Whole Foods Delivery Slot
Automated script for Whole Foods and Amazon Fresh delivery slot
Stars: ✭ 460 (+1021.95%)
Mutual labels:  automation, webdriver
Selenium Python
Selenium Python Bindings Documentation
Stars: ✭ 640 (+1460.98%)
Mutual labels:  selenium, webdriver
Webdriverio
Next-gen browser and mobile automation test framework for Node.js
Stars: ✭ 7,214 (+17495.12%)
Mutual labels:  automation, webdriver
Php Webdriver
PHP client for Selenium/WebDriver protocol. Previously facebook/php-webdriver
Stars: ✭ 4,477 (+10819.51%)
Mutual labels:  selenium, webdriver
Fantoccini
A high-level API for programmatically interacting with web pages through WebDriver.
Stars: ✭ 619 (+1409.76%)
Mutual labels:  automation, webdriver

Selenium Tools for Microsoft Edge

Build Status

Selenium Tools for Microsoft Edge extends Selenium 3 with a unified driver to help you write automated tests for both the Microsoft Edge (EdgeHTML) and new Microsoft Edge (Chromium) browsers.

The libraries included in this project are fully compatible with Selenium's built-in Edge libraries, and run Microsoft Edge (EdgeHTML) by default so you can use our project as a seamless drop-in replacement. In addition to being compatible with your existing Selenium tests, Selenium Tools for Microsoft Edge gives you the ability to drive the new Microsoft Edge (Chromium) browser and unlock all of the latest functionality!

The classes in this package are based on the existing Edge and Chrome driver classes included in the Selenium project.

Before you Begin

The Selenium Tools for Microsoft Edge is a solution for developers who prefer to remain on Selenium 3 which is the current stable release and developers who have existing browser tests and want to add coverage for the new Microsoft Edge (Chromium) browser without changing the Selenium version.

The very same Edge driver classes provided in this package are included in Selenium 4 and are already available today in the latest Selenium 4 Alpha release. If you are able to upgrade to Selenium 4 Alpha, there is no need to use this package as Selenium should already have everything you need built in!

Getting Started

Downloading Driver Executables

You will need the correct WebDriver executable for the version of Microsoft Edge you want to drive. The executables are not included with this package. WebDriver executables for all supported versions of Microsoft Edge are available for download here. For more information, and instructions on downloading the correct driver for your browser, see the Microsoft Edge WebDriver documentation.

Installation

Selenium Tools for Microsoft Edge depends on the official Selenium 3 package to run. You will need to ensure that both Selenium 3 and the Tools and included in your project.

C#

Add the Microsoft.Edge.SeleniumTools and Selenium.WebDriver packages to your .NET project using the NuGet CLI or Visual Studio.

JavaScript

npm install @microsoft/edge-selenium-tools

Java

Add msedge-selenium-tools-java to your project using Maven:

<dependencies>
    <dependency>
        <groupId>com.microsoft.edge</groupId>
        <artifactId>msedge-selenium-tools-java</artifactId>
        <version>3.141.0</version>
    </dependency>
</dependencies>

The Java package is also available for download on the Releases page.

Python

Use pip to install the msedge-selenium-tools and selenium packages:

pip install msedge-selenium-tools selenium==3.141

Example Code

See the Microsoft Edge WebDriver documentation for lots more information on using Microsoft Edge (Chromium) with WebDriver.

C#

using Microsoft.Edge.SeleniumTools;

// Launch Microsoft Edge (EdgeHTML)
var driver = new EdgeDriver();

// Launch Microsoft Edge (Chromium)
var options = new EdgeOptions();
options.UseChromium = true;
var driver = new EdgeDriver(options);

Java

Import EdgeDriver from the com.microsoft.edge.seleniumtools package to launch Microsoft Edge (Chromium). The com.microsoft.edge.seleniumtools package supports Chromium only. Use the official Selenium 3 package org.openqa.selenium.edge to launch EdgeHTML.

import com.microsoft.edge.seleniumtools.EdgeDriver;

// Launch Microsoft Edge (Chromium)
EdgeDriver driver = new EdgeDriver();

JavaScript

const edge = require("@microsoft/edge-selenium-tools");

// Launch Microsoft Edge (EdgeHTML)
let driver = edge.Driver.createSession();

// Launch Microsoft Edge (Chromium)
let options = new edge.Options().setEdgeChromium(true);
let driver = edge.Driver.createSession(options);

Python

from msedge.selenium_tools import Edge, EdgeOptions

# Launch Microsoft Edge (EdgeHTML)
driver = Edge()

# Launch Microsoft Edge (Chromium)
options = EdgeOptions()
options.use_chromium = True
driver = Edge(options = options)

Contributing

We are glad you are interested in automating the latest Microsoft Edge browser and improving the automation experience for the rest of the community!

Before you begin, please read & follow our Contributor's Guide. Consider also contributing your feature or bug fix directly to Selenium so that it will be included in future Selenium releases.

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].