Skip to content

Instantly share code, notes, and snippets.

View yucer's full-sized avatar

Yurdik Cervantes yucer

View GitHub Profile
@yucer
yucer / selenium_new_tab.py
Created August 2, 2017 13:35
Script to test opening new tab with selenium RemoteWebDriver
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
import time
import tempfile
import logging
@yucer
yucer / debug-smtpd
Created February 11, 2016 16:26 — forked from tachesimazzoca/debug-smtpd
Python SMTP Debugging Server #python
#!/usr/bin/python
import asyncore
import logging
import smtpd
import sys
log = logging.getLogger('debug-smtpd')
class LoggingSMTPServer(smtpd.SMTPServer):