How to find an element inside a PySimpleGui's Frame by a key without hardcoding it via .Rows[0]
?
import PySimpleGUI as sg
layout = [
[sg.Frame(layout=[
[sg.Text('Field:'), sg.Text('', key='key')],
])]
]
window = sg.Window("Name", layout)