Hello,
Trying to find the element for this chunk of code, there are 4 buttons with similar structures (div -> button -> div -> div sytle), but sometimes 2 of the 4 buttons are not available. When I put it into an array with _WD_FindElement, I see that it sees (finds?) the buttons and it's always the 3rd one (only if it's available, since sometimes 2/4 buttons are not there). So I figured I might have to look for some sort of "contains text" but I can't seem to figure it out correctly.
Chunk of code:
<div style="color: rgb(54, 67, 80); background-color: rgb(255, 255, 255); transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; box-sizing: border-box; font-family: Poppins; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px; border-radius: 2px; display: inline-block; min-width: 100%;">
<button tabindex="0" type="button" style="border: 10px; box-sizing: border-box; display: inline-block; font-family: Poppins; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); cursor: pointer; text-decoration: none; margin: 0px; padding: 0px; outline: none; font-size: inherit; font-weight: inherit; position: relative; height: 36px; line-height: 36px; width: 100%; border-radius: 2px; transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; background-color: rgb(159, 195, 55); text-align: center;">
<div>
<div style="height: 36px; border-radius: 2px; transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; top: 0px;">
<!-- react-text: 98 -->
Button3
<!-- /react-text -->
</div>
</div>
</button>
</div>
What I have to see all available buttons:
$aElements = _WD_FindElement($sSession, $_WD_LOCATOR_ByXPath, "//div/button", Default, True)
_ArrayDisplay($aElements, "Found Elements")
What I thought would work but I get an error. _WD_FindElement ==> Webdriver Exception: HTTP status = 400
$sElement = _WD_FindElement($sSession, $_WD_LOCATOR_ByXPath, "//div/button/div[contains[text(),'Button3']")
ConsoleWrite("$sElement = " & $sElement & @CRLF)
Thank you in advance!!
EDIT (after some Googling, I got it to return an element value).
I think the above code I had only returns true/false (?). Going to have to try the below with some actions.
$sElement = _WD_FindElement($sSession, $_WD_LOCATOR_ByXPath, "//*[text()[contains(.,'Button3')]]")
ConsoleWrite("$sElement = " & $sElement & @CRLF)