mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[Core] Prtester fix list fix (#2753)
This commit is contained in:
parent
85e5ce2679
commit
4d18312604
10
.github/prtester.py
vendored
10
.github/prtester.py
vendored
@ -50,14 +50,16 @@ def testBridges(bridges,status):
|
|||||||
formstring = formstring + '&' + parameter.get('name') + '=on'
|
formstring = formstring + '&' + parameter.get('name') + '=on'
|
||||||
for listing in lists:
|
for listing in lists:
|
||||||
selectionvalue = ''
|
selectionvalue = ''
|
||||||
listingflat = list(itertools.chain.from_iterable(listing))
|
listname = listing.get('name')
|
||||||
for selectionentry in listingflat:
|
if 'optgroup' in listing.contents[0].name:
|
||||||
|
listing = list(itertools.chain.from_iterable(listing))
|
||||||
|
for selectionentry in listing:
|
||||||
if 'selected' in selectionentry.attrs:
|
if 'selected' in selectionentry.attrs:
|
||||||
selectionvalue = selectionentry.get('value')
|
selectionvalue = selectionentry.get('value')
|
||||||
break
|
break
|
||||||
if selectionvalue == '':
|
if selectionvalue == '':
|
||||||
selectionvalue = listingflat[0].get('value')
|
selectionvalue = listing.contents[0].get('value')
|
||||||
formstring = formstring + '&' + listing.get('name') + '=' + selectionvalue
|
formstring = formstring + '&' + listname + '=' + selectionvalue
|
||||||
if not errormessages:
|
if not errormessages:
|
||||||
# if all example/default values are present, form the full request string, run the request, replace the static css
|
# if all example/default values are present, form the full request string, run the request, replace the static css
|
||||||
# file with the url of em's public instance and then upload it to termpad.com, a pastebin-like-site.
|
# file with the url of em's public instance and then upload it to termpad.com, a pastebin-like-site.
|
||||||
|
Loading…
Reference in New Issue
Block a user