This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# I hate the documentation of openpyxl and it took me a while to undertand their stuff. So I decided to write down this code. | |
# Has some wrapper functions that reads all rows from the excel sheet and also a function to read a particular row. | |
# Add some code to the functions if you wish to do something on fly like adding values to list and sorting them later. | |
# | |
# Date: 28/09/2015 | |
from openpyxl import load_workbook | |
# Reads all rows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import selenium | |
import time | |
from selenium import webdriver | |
browser = webdriver.PhantomJS("phantomjs") | |
browser.get("https://twitter.com/StackStatus") | |
print browser.title | |
pause = 3 |