更新Firebase实时数据库的子文件夹名称,该名称包含响应本机值

时间:2019-04-11 09:02:50

标签: javascript firebase react-native firebase-realtime-database

使用react native更新无法正常运行的Firebase实时数据库的子文件夹名称。

我可以使用Firebase自定义键更改图像以及文件夹内的名称,但是我无法更改数据库中作为键显示的名称。

path=os.path.realpath(path) 
os.startfile(path) # open the folder named "FW"
app = pywinauto.Desktop(backend='uia').window(best_match='FW')
win = app.window(title_re='WRT_FW_27_12_2018_11_19_59_000001')
win.click_input(button='left')
win.click_input(button='right') # right click on one file listed there
app1 = pywinauto.Desktop(backend='uia').window(best_match='ContextMenu',top_level_only = True)
win1 = app1.window(title_re="Send to")
win1.click_input()  # click on "Send to" context menu

app.print_control_identifiers()
app2 = pywinauto.Desktop(backend='uia').window(best_match='ContextMenuItem',top_level_only = True)
win2 = app2.window(title_re="BTDecoder")
win2.click_input() # trying to click on sub menu item called "BTDecoder" which not happening.

我想更改包含值的子文件夹的名称

0 个答案:

没有答案