Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
530fd2ed
authored
Apr 05, 2015
by
Csók Tamás
Committed by
Bach Dániel
Apr 10, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
selenium: changed line order error
parent
52f2a704
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
circle/dashboard/tests/selenium/util.py
+5
-3
No files found.
circle/dashboard/tests/selenium/util.py
View file @
530fd2ed
...
@@ -286,11 +286,11 @@ class CircleSeleniumMixin(SeleniumMixin):
...
@@ -286,11 +286,11 @@ class CircleSeleniumMixin(SeleniumMixin):
def
save_template_from_vm
(
self
,
name
):
def
save_template_from_vm
(
self
,
name
):
try
:
try
:
url_save
=
self
.
get_url
()
WebDriverWait
(
self
.
driver
,
self
.
conf
.
wait_max_sec
)
.
until
(
WebDriverWait
(
self
.
driver
,
self
.
conf
.
wait_max_sec
)
.
until
(
ec
.
element_to_be_clickable
((
ec
.
element_to_be_clickable
((
By
.
CSS_SELECTOR
,
By
.
CSS_SELECTOR
,
"a[href$='/op/deploy/']"
)))
"a[href$='/op/deploy/']"
)))
url_save
=
self
.
get_url
()
self
.
click_on_link
(
self
.
get_link_by_href
(
"/op/deploy/"
))
self
.
click_on_link
(
self
.
get_link_by_href
(
"/op/deploy/"
))
fallback_url
=
"
%
sop/deploy/"
%
url_save
fallback_url
=
"
%
sop/deploy/"
%
url_save
self
.
wait_and_accept_operation
(
self
.
wait_and_accept_operation
(
...
@@ -625,7 +625,8 @@ class CircleSeleniumMixin(SeleniumMixin):
...
@@ -625,7 +625,8 @@ class CircleSeleniumMixin(SeleniumMixin):
recent_remove_disk
=
self
.
recently
(
recent_remove_disk
=
self
.
recently
(
self
.
get_timeline_elements
(
self
.
get_timeline_elements
(
"vm.Instance.remove_disk"
,
url_save
))
"vm.Instance.remove_disk"
,
url_save
))
if
not
self
.
check_operation_result
(
recent_remove_disk
):
if
not
self
.
check_operation_result
(
recent_remove_disk
,
"a[href*='#activity']"
):
logger
.
warning
(
"Selenium cannot delete disk "
logger
.
warning
(
"Selenium cannot delete disk "
"of the chosen template"
)
"of the chosen template"
)
raise
Exception
(
'Cannot delete disk'
)
raise
Exception
(
'Cannot delete disk'
)
...
@@ -738,7 +739,8 @@ class CircleSeleniumMixin(SeleniumMixin):
...
@@ -738,7 +739,8 @@ class CircleSeleniumMixin(SeleniumMixin):
recent_destroy_vm
=
self
.
recently
(
recent_destroy_vm
=
self
.
recently
(
self
.
get_timeline_elements
(
self
.
get_timeline_elements
(
"vm.Instance.destroy"
,
url_save
))
"vm.Instance.destroy"
,
url_save
))
if
not
self
.
check_operation_result
(
recent_destroy_vm
):
if
not
self
.
check_operation_result
(
recent_destroy_vm
,
"a[href*='#activity']"
):
logger
.
warning
(
"Selenium cannot destroy "
logger
.
warning
(
"Selenium cannot destroy "
"the chosen
%(id)
s vm"
%
{
"the chosen
%(id)
s vm"
%
{
'id'
:
pk
})
'id'
:
pk
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment