thiagodp / katalon-concordia

🔌 Chrome/Firefox extension for transforming Katalon tests into Concordia Language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Convert new XPaths produced by Katalon Recorder

thiagodp opened this issue · comments

Katalon Recorder is now producing xpaths such as

xpath=(.//*[normalize-space(text()) and normalize-space(.)='Início'])[1]/following::span[2]

That is, starting with xpath=(. and having ) to close the initial (.

The xpath must be transformed to a traditional xpath, such as

//*[normalize-space(text()) and normalize-space(.)='Início'][1]/following::span[2]