Пример #1
0
# This is just the starting point, so the URL will change as we navigate around.
form = Form('https://www.e-oscar-web.net/EntryController?trigger=Login',
            headless)

# First we need to log in.
form.fill([
    form.select(id='companyId', val=companyId),
    form.select(id='userId', val=userId),
    form.select(id='password', val=password),
    form.select(id='securityMsgAck1'),
    form.select(selector='.loginBtn')
])

#We need to get the correct AUD Panel

with form.frame('topFrame'):
    form.fill([form.select(id='DFProcessAUDanch')])

# For each row in the input csv we need to start filling the AUD forms
for row in spreadsheet.rows:
    row_dict = dict(zip(spreadsheet.header, row.cells))
    #Once in we need to fill the AUD forms

    with form.frame('leftFrame'):
        form.fill([form.select(id='DFCreateAUD')])
    with form.frame('mainFrame'):
        # We need the AUD Control number for reference
        print(
            "Aud Control #",
            form.select(
                id='headerInformation.audControlNumber').attribute("value"),
Пример #2
0
# This is just the starting point, so the URL will change as we navigate around.
form = Form('https://www.e-oscar-web.net/EntryController?trigger=Login')

# First we need to log in.
form.fill([
    form.select(id='companyId', val='RegID'),
    form.select(id='userId', val='UserID'),
    form.select(id='password', val='password'),
    form.select(id='securityMsgAck1'),
    SleepElement(
        3
    ),  # For demonstration purposes only. Fills in info and then waits 3 seconds.
    form.select(selector='.loginBtn')
])

with form.frame('topFrame'):
    form.fill([form.select(id='AUDButton')])

# Clicking the .loginBtn will cause the form to submit and we'll be navigated to a new page.
# Now we want to submit the form a bunch of times. Let's use our spreadsheet.
for row in spreadsheet.rows:
    #  We can update the spreadsheet with data from the form.
    #  Here, we are updating the AUD column of each row to be the text of the #aud element.
    row.set('AUD', form.select(id='aud').text)

    # Because we are using fill_from_row, the elements will automatically get their values from the spreadsheet
    # for the current row and at the column specified by the `col` field.
    form.fill_from_row(row, [
        form.select(id='companyId', col='Company ID'),
        form.select(id='userId', col='User ID'),
        form.select(id='password', col='Password'),