https://i.sstatic.net/9q3yq.pngWhen attempting to automate a wiki page using Selenium WebDriver, I am encountering difficulties identifying web elements within an iframe.
dri.switchTo.frame(frameid);
This is the iframe in question:
<iframe frameborder="0" data-synchrony="true" id="wysiwygTextarea_ifr" src="javascript:""" allowtransparency="true" title="{#aria.rich_text_area}" style="width: 100%; height: 100%; display: block;" tabindex="100" class=""></iframe>
I have manually created a wiki page with a table and now wish to update values within the table using Selenium.
Could you please provide guidance on how to identify the table within the iframe?