Closed
Bug 566960
Opened 15 years ago
Closed 15 years ago
Python Selenium RC Review: anon_csat_NTF_no
Categories
(Testing Graveyard :: WebQA, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: tgavankar, Unassigned)
References
Details
Attachments
(1 file)
|
1.18 KB,
patch
|
vish_moz
:
review+
|
Details | Diff | Splinter Review |
Python test anon_csat_NTF_no for review
Attachment #446320 -
Flags: review?(vish.mozilla)
Comment 1•15 years ago
|
||
Always start your test with these two lines of code for http auth:
1. sel.open("https://support:stage@support-stage-new.mozilla.com)
2. sel.open("https://support:stage@support-stage-new.mozilla.com/tiki-login_scr.php")
Comment 2•15 years ago
|
||
You do not have to do:
sel.open(baseurl + "/en-US/kb/Firefox+Support+Home+Page")
once baseurl is set in the sel object you can just do this:
sel.open("/en-US/kb/Firefox+Support+Home+Page")
Comment 3•15 years ago
|
||
correction to comment 1
Always start your test with these three lines of code for http auth:
1. sel.open("http://support:stage@support-stage-new.mozilla.com")
2. sel.open("https://support:stage@support-stage-new.mozilla.com")
3. sel.open("https://support:stage@support-stage-new.mozilla.com/tiki-login_scr.php")
(do line 3 only if you are going to log-in)
Comment 4•15 years ago
|
||
Comment on attachment 446320 [details] [diff] [review]
Python code for review
good.
Attachment #446320 -
Flags: review?(vish.mozilla) → review+
| Reporter | ||
Comment 5•15 years ago
|
||
Committed to SVN.
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Updated•8 years ago
|
Product: Testing → Testing Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•