Skip to content

Instantly share code, notes, and snippets.

@wootiml33t
wootiml33t / cloudSettings
Last active August 16, 2020 01:59
extentions for vs code
{"lastUpload":"2020-08-16T02:00:42.946Z","extensionVersion":"v3.4.3"}
@wootiml33t
wootiml33t / seleniumStartEdgeCanary.cs
Created August 22, 2019 17:26
Start Edge Canary Selenium
using System;
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
//Author: Zachariah Leonard
namespace EdgeCanary
{
class Program
{
static void Main(string[] args)
{
@wootiml33t
wootiml33t / seleniumStartEdge.cs
Last active October 25, 2019 23:48
How to start Microsoft Edge via SeleniumQA with C#
using OpenQA.Selenium;
using OpenQA.Selenium.Edge;
using OpenQA.Selenium.Remote;
namespace seleniumEdge
{
class Program
{
static void Main(string[] args)
{
EdgeOptions edgeOptions = new EdgeOptions();
@wootiml33t
wootiml33t / seleniumStartEdge.java
Last active April 4, 2019 15:34
How to start Microsoft Edge with Java
package com.company;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.edge.EdgeDriverService;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.RemoteWebDriver;
import java.io.File;
import java.io.IOException;