From 4d1831260407c2306d6a9474ec3ae378dabd1716 Mon Sep 17 00:00:00 2001 From: Bocki Date: Wed, 25 May 2022 20:26:39 +0200 Subject: [PATCH] [Core] Prtester fix list fix (#2753) --- .github/prtester.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/prtester.py b/.github/prtester.py index 7d64e1f0..bfd2c89f 100644 --- a/.github/prtester.py +++ b/.github/prtester.py @@ -50,14 +50,16 @@ def testBridges(bridges,status): formstring = formstring + '&' + parameter.get('name') + '=on' for listing in lists: selectionvalue = '' - listingflat = list(itertools.chain.from_iterable(listing)) - for selectionentry in listingflat: + listname = listing.get('name') + if 'optgroup' in listing.contents[0].name: + listing = list(itertools.chain.from_iterable(listing)) + for selectionentry in listing: if 'selected' in selectionentry.attrs: selectionvalue = selectionentry.get('value') break if selectionvalue == '': - selectionvalue = listingflat[0].get('value') - formstring = formstring + '&' + listing.get('name') + '=' + selectionvalue + selectionvalue = listing.contents[0].get('value') + formstring = formstring + '&' + listname + '=' + selectionvalue if not errormessages: # 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.