jond (@15554041980)急急急!python大佬看过来!救救实习生吧! 中发帖

大家晚上好,当你点开这个帖子的时候,就注定了这个不平凡的夜晚。。。 
长话短说我说下遇到的开发问题,这是一个excel中的Oracle应用程序,下面我贴的代码要实现的功能是,在获取页面中指定的元素并进行点击。
直接贴代码了。
{

def select_responsibility(self, seq_of_responsibility):
win_label = 'Oracle Applications Login'
try:
hld, doc, html_content = find_window_and_get_doc(win_label)
print(f"doc:,{doc}")
print(f"Methods and properties: {dir(doc)}")

# 只传递一个参数给 getElementsByTagName
s...