Getting the Timeout Error While Try to open chrome through Robotframework keyword = Open Chrome Browser

1.2k Views Asked by At

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.

1

There are 1 best solutions below

1
Tom Purl On

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 of urllib that was < 2.0 this problem disappeared.

This SO post has more information.