Skip to content

Instantly share code, notes, and snippets.

View tkuben's full-sized avatar

Thusjanthan Kubendranathan tkuben

View GitHub Profile
@tkuben
tkuben / selenium-python
Created August 17, 2017 21:09
selenium-python
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
driver = webdriver.Remote(
command_executor='http://127.0.0.1:4444/wd/hub',
desired_capabilities=DesiredCapabilities.CHROME)