I am passing this keyword in robot file
Open Chrome Browser ${URL} maximized=true
Getting the below error:
Chrome: Timeout value connect was <object object at 0x00000197DC5C7D10>, but it must be an int, float or None.
I am passing this keyword in robot file
Open Chrome Browser ${URL} maximized=true
Getting the below error:
Chrome: Timeout value connect was <object object at 0x00000197DC5C7D10>, but it must be an int, float or None.
Copyright © 2021 Jogjafile Inc.
The same thing happened to me after building a new Docker image with updated Python libraries. The issue seems to be related to the version of
urllib. When I backed out the newly-built image and replaced it with one that had a version ofurllibthat was < 2.0 this problem disappeared.This SO post has more information.