I’m looking for a function that finds a word (1) in a html tabel and edit/inserts value (from other datatable) in a form in next column (2).
Did a search and can’t find anything good in the forums.
I’m looking for a function that finds a word (1) in a html tabel and edit/inserts value (from other datatable) in a form in next column (2).
Did a search and can’t find anything good in the forums.
@Martin_S you can use get text for scraping data and type into for edit
Example download from below link
Sorry! But thats not the right function for my problem.
I need to find a string (“The Word I want”) in a html table, when the string is found in a row, I need to use type into in the row but in column C from a other DataTable (variable)
Hi,
Please follow the below steps:
Thanks
Hi!
Thank you @Bharat
I’m stuck right now with the RowIndex!
The scraped datatable has a start from rowindex 1 but the html row starts from 0. So I can’t input data to the correct row. I’m behind with 1 rowindex. Any idea? Can I do a RowIndex+1?
Yes you can increment or decrement rowindex while passing it to selector in the selector string.
Decrement rowindex by one if it’s typing in the row next to the correct row and vice versa.
Thanks