You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create_webdriver was marked as returning a str, however, its return
value is coming from register_driver which is documented to return int.
These where changed to return actual int.
switch_driver was only accepting str as "index_or_alias". While aliases
are str's since create_driver now returns the actual index as int,
accepting both types makes more sense.
select and unselect list keywords where typehinted to receive only str
as index type - when called from python side, this does not make much
sense so changed those to int as RF should do type conversion
automatically.
Fixes#1791
0 commit comments