Is your feature request related to a problem? Please describe.
In some cases where you perform click, you need to set custom timeouts. Some services might take longer that the default timeout.
Describe the solution you'd like
Implement playwright.locator.click() timeout option for "Click With Options" keyword
Click With Options ${selector} timeout=60s
This could also be option with "Click" keyword
Click ${selector} timeout=60s
Describe alternatives you've considered
There is a workaround that you can use.
${old_timeout}= Set Browser Timeout 60s
Click ${selector}
Set Browser Timeout ${old_timeout}
Additional context
Is your feature request related to a problem? Please describe.
In some cases where you perform click, you need to set custom timeouts. Some services might take longer that the default timeout.
Describe the solution you'd like
Implement playwright.locator.click() timeout option for "Click With Options" keyword
Click With Options ${selector} timeout=60sThis could also be option with "Click" keyword
Click ${selector} timeout=60sDescribe alternatives you've considered
There is a workaround that you can use.
${old_timeout}= Set Browser Timeout 60sClick ${selector}Set Browser Timeout ${old_timeout}Additional context