Linked to issue #397
click(link(toLeftOf('text'))) should click the link in a table immediately to the left of the text.
e.g click(link(toLeftOf('flight alcohol test'))) should click '1000028968'.

Taiko is unable to 'see' this link and instead clicks the top left of the screen and takes user home.
npm install -g taiko@git+https://github.com/getgauge/taiko.git latest REPL
From the html I understand the product Ids are not actually a link rather they are span,
click($('.menulink',toLeftOf('flight alcohol test'))) hopefully should work for this case.

It is working fine. Thanks for the solution.
Most helpful comment
From the html I understand the product Ids are not actually a link rather they are span,
click($('.menulink',toLeftOf('flight alcohol test')))hopefully should work for this case.