forked from geekcomputers/Python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinternet_connection_py3
More file actions
25 lines (23 loc) · 732 Bytes
/
internet_connection_py3
File metadata and controls
25 lines (23 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import urllib2
import os
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
print "Testing Internet Connection"
print
try:
urllib2.urlopen("http://google.com", timeout=2)#Tests if connection is up and running
print "Internet is working fine!"
print
question = raw_input("Do you want to open a website? (Y/N): ")
if question == 'Y':
print
search = raw_input("Input website to open (http://website.com) : ")
else:
os._exit(0)
except urllib2.URLError:
print ("No internet connection!")#Output if no connection
browser = webdriver.Firefox()
browser.get(search)
os.system('cls')#os.system('clear') if Linux
print "[+] Website "+search + " opened!"
browser.close()