2014-08-27 03:08:39 +00:00
|
|
|
# Copyright 2014 seahub authors
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2014-08-27 09:13:05 +00:00
|
|
|
from common.common import BASE_URL, USERNAME, PASSWORD
|
2014-08-27 03:08:39 +00:00
|
|
|
from selenium import webdriver
|
|
|
|
from selenium.webdriver.common.keys import Keys
|
|
|
|
|
2014-08-27 09:13:05 +00:00
|
|
|
LOGIN_URL = BASE_URL + u'/accounts/login/'
|
|
|
|
HOME_URL = BASE_URL + u'/home/my/'
|
|
|
|
LOGOUT_URL = BASE_URL + u'/accounts/logout/'
|
2014-08-27 03:08:39 +00:00
|
|
|
|
2014-08-27 09:13:05 +00:00
|
|
|
def get_logged_instance():
|
2014-08-27 03:08:39 +00:00
|
|
|
browser = webdriver.PhantomJS()
|
|
|
|
browser.get(LOGIN_URL)
|
|
|
|
username_input = browser.find_element_by_name('username')
|
|
|
|
password_input = browser.find_element_by_name('password')
|
|
|
|
username_input.send_keys(USERNAME)
|
|
|
|
password_input.send_keys(PASSWORD)
|
|
|
|
password_input.send_keys(Keys.RETURN)
|
|
|
|
if (browser.current_url != HOME_URL):
|
|
|
|
browser.quit()
|
|
|
|
return None
|
|
|
|
return browser
|