-
Notifications
You must be signed in to change notification settings - Fork 133
Open
Labels
Description
Describe the bug
In case of a website dom which contains a lot of content, keywords like "Get Page Source" may fail with message: "CLIENT: Received message larger than max (4200443 vs. 4194304)"
To Reproduce
Unfortunately I can't provide a public website for testing this behavior
Expected behavior
The called keywords should not fail because of reduced message length limits
Desktop (please complete the following information):
- OS: Windows 11
- Browser: chromium
- Version 140.0.3485.54
Additional context
- The root cause for this problem seems to be the limits of the gprc channel. When setting appropriate max size for the gprc_channel solves the problem for this specific case
grpc.insecure_channel(f"{self.host}:{self.port}", options=[ ('grpc.max_message_length', 4300000), ('grpc.max_send_message_length', 4300000), ('grpc.max_receive_message_length', 4300000), ],)
Could you please check this case and either adjust the grpc_channel settings to appropriate values for handling large websites (we also have seen cases of even bigger dom content) or make these values configurable.
Kind regards, Frank