Skip to content

Instantly share code, notes, and snippets.

@ashfinal
Created June 3, 2017 14:20
Show Gist options
  • Save ashfinal/ae7ca3c1d10fc362a31689197de02383 to your computer and use it in GitHub Desktop.
Save ashfinal/ae7ca3c1d10fc362a31689197de02383 to your computer and use it in GitHub Desktop.
# -*- coding:utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
driver = webdriver.Safari()
driver.get("http://www.bing.com")
assert "Bing" in driver.title
elem = driver.find_element_by_name("q")
elem.clear()
time.sleep(5)
elem.send_keys(u"中文")
elem.send_keys(Keys.RETURN)
assert "No results found." not in driver.page_source
time.sleep(5)
driver.save_screenshot('screenshot.png')
driver.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment