Skip to content

Commit

Permalink
remove config.json from releases
Browse files Browse the repository at this point in the history
  • Loading branch information
naibo committed Jul 7, 2023
1 parent 2de6f6d commit 08dc87d
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 12 deletions.
1 change: 1 addition & 0 deletions .temp_to_pub/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ EasySpider.app/
EasySpider_windows_x64/user_data
*.tmp
*.7z*
config.json
1 change: 0 additions & 1 deletion .temp_to_pub/EasySpider_Linux_x64/config.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ def __init__(self, browser_t, id, service, version, event, saveName, config):
if para["name"] not in self.outputParameters.keys():
self.outputParameters[para["name"]] = ""
self.dataNotFoundKeys[para["name"]] = False
self.outputParametersTypes.append(para["type"])
try:
self.outputParametersTypes.append(para["type"])
except:
self.outputParametersTypes.append("text")
try:
self.outputParametersRecord.append(bool(para["recordASField"]))
except:
Expand Down Expand Up @@ -900,8 +903,6 @@ def inputInfo(self, para, loopValue):
# 点击元素事件

def clickElement(self, para, loopElement=None, clickPath="", index=0):
time.sleep(0.1) # 点击之前等待0.1秒
self.Log("Wait 0.1 second before clicking element")
try:
maxWaitTime = int(para["maxWaitTime"])
except:
Expand Down
1 change: 0 additions & 1 deletion .temp_to_pub/EasySpider_windows_x64/config.json

This file was deleted.

This file was deleted.

Loading

0 comments on commit 08dc87d

Please sign in to comment.