Hello. I was wondering if there is a way to update the Robot Framework Formatter to include the keywords in the most recent version of SeleniumLibrary. Would it be possible to remove the current Select keyword (as it is no longer valid):
select
[Arguments] ${element} ${value}
Select From List ${element} ${value}
and replace it with:
select
[Arguments] ${element} ${value}
Select From List By Label ${element} ${value}
select
[Arguments] ${element} ${value}
Select From List By Vallue ${element} ${value}
select
[Arguments] ${element} ${value}
Select From List By Index ${element} ${value}
or let me know if there is any way I can change it myself.
Thank you.