Jump to content

pytruong

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by pytruong

  1. @Danp2 Thank you! This gave me a 404 error. But once I changed contains(text(), "Button3") to contains(., "Button3") It found it. Also tried this, and it worked: '//*[@type="button" and div="Button3"]'
  2. 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)
  3. I'm sorry for the delay. Just wanted to thank you guys for the quick response. Melba23, I'm going to give that WrapIt a shot, it looks interesting. Thanks!
  4. Thank you Argumentum for the quick response. Not exactly what I was looking for, because I didn't want to have 2 .Exe files but if what I originally wanted is not doable, I'll have to play with the scripts from that link. Thanks once again!
  5. Googled and Searched and I couldn't find this. I think my "keywords" are incorrect but I've tried different combinations of words. Closest thing I found was this: https://www.autoitscript.com/forum/topic/149432-build-exe-from-exe/ but I don't know if it's actually what I'm looking for and the link provided by Melba23 (https://www.autoitscript.com/forum/topic/149432-build-exe-from-exe/?do=findComment&comment=1064672) is giving an error. What I'm trying to do is create a code("Code1") that contains another code ("Code2"). Code1 contains GUI input boxes for $Username & $Password Code2 then uses those variables for the main coding that I've created Code1 then creates the compiled Exe. But I would like Code1 to be in itself already an Exe that I can give to my colleagues. The purpose is that Code1.Exe will request their credentials and then a new Exe will be compiled for them that ONLY contains Code2 (with their credentials embedded into it).
×
×
  • Create New...