forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinternet_connection_py3.py
More file actions
26 lines (24 loc) · 779 Bytes
/
Copy pathinternet_connection_py3.py
File metadata and controls
26 lines (24 loc) · 779 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
26
from __future__ import print_function
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()