Jump to content
UBot Underground

Search the Community

Showing results for tags 'xpath'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Announcements and News
    • Join the UBot Community
  • General
    • General Discussion
    • Mac and UBot Studio
    • Journeys
    • Buy, Sell, Free
    • Scripting

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 12 results

  1. I have a load of txt logs and it comes with some standard bumf at the top like headers but they are not actually headers. The first word of the doc always starts with "Start" and I want to delete everything inbetween to the word "Status:" including "Status:" How would I do that in ubot ? many thanks
  2. Is there any way to use XPATH to click on an element using Ubot's browser? I previously had it working in Exbrowser but i'm trying to get it working in the regular Ubot browser. So far, I've tried the CLICK command and pressed the gear icon and found the exact element which there is only 1. Problem is that UBOT doesn't actually click it. I'm thinking that possibly using XPATH again will work as it did in Exbrowser. I've see a post about using CSS Path but it seems like that would point to the exact location of the element at that time. If it moves, it won't click the correct one. Using the
  3. Hi if someone can help please. It worked before but it stopped clicking the Google Search button and I can't find out how to make it work again. Here the code I use: plugin command("ExBrowser.dll", "ExBrowser Click", "x://input[@value=\"Google Search\"]") I checked the html code and it seems the same button code appears twice there: http://i.grab.la/08b16-ad29aa03-f06e-4d35-bbc4-01c74d729c75.png role="listbox"></ul><style>#sbt{display:none}.sbct{padding:0px 16px;line-height:22px;display:flex;align-items:center;min-width:0;}.sbtc{display:flex;flex:auto;flex-direction:colu
  4. In Xpath can more than one Word be used simultaneously? //div[contains(@id,"one OR two")] Is there that kind of syntax?
  5. Hi there, I'm trying to click the edit pencil button in a Pinterest pin to open the edit pin window but cannot find a way how to achieve that consistently as they change the code a bit..This is the code right now and now I cannot find a way to click it: I tried //div[contains(@class,"flex")]/div/div/div/button[contains(@aria-label,"Edit")] or different variations, but it doesn't work. Before I could click it when focusin on the specific attribute data-reactid in the edit button, but a few hours later Pinterest changed the code..Sometimes it even worked with just //button[contains(@aria-la
  6. Hi, I am new to this community I usually try to solve by my self the problems but this time i give up... simple i cannot copy or scrape the generated email value from the upper field in this page: temp-mail.org/ I usualy use Exbrowser so i need the xpath expression. I also use xpath builder pro for the same provider but no luck.. Can you help me? Thank you i tried: //input[@class=mail opentip] //input[@id=mail] //input[contains(@id,'mail')] //input[contains(@type,'text')] //*[@id=mail] and many many combinations. I do not master xpath syntax , i only use what i have provided by the webdri
  7. I'm using xPath Builder Pro to help write an xPath statement and Im trying to figure out how to add a parameter. For example there are lots of buttons all with the same class name so I believe the statement is created correctly x://a[@class=class name] When I test this function it returns all the names of the buttons which all have the same class. This sounds like its working. But I just want to click 1 particular button with a specific name but I can't figure out how it should look... I have another similar existing xpath which does something similar so I copied the format like this bu
  8. Hi, Is it possible to use xpath within ubot? I just installed "Free Xpath Plugin" navigate("https://www.google.com/", "Wait") wait(3) type text(<name="q">, "Apple Trees", "Standard") But not found how to use it inside UBOT
  9. Guys i have kinda a general question....i am using Xpath...and i am not good at it,i am really goood at Regex so is there a general method to simply download entire Page source using Exbrowser?? Entire HTML ,so i can edit it with Regex...in there i know many tricks to get exactly what i want! anyone?
  10. Hi, I'm attempting to select multiple radio buttons (with the same text), using xpath. The html is like this: <input type="radio" class="site-form-field" name="850_4750" id="850_4750_216808" value="#216808"> <label for="850_4750_216808" class="site-form-label inline">Not applicable</label> This command selects the 1st instance of 'Not applicable' but does not select the rest: plugin command("ExBrowser.dll", "ExBrowser Click", "x://label[contains(text(),\"Not applicable\")]") How should I construct the xpath so that it selects ALL radio buttons marked 'Not applicable'
  11. need some help with xpath i want to use ExBrowser Wait For Element(wait for element1 or element2) plugin command("ExBrowser.dll", "ExBrowser Wait For Element", "x://input[@class=\'LinkContinue\']", "Appear", 30) plugin command("ExBrowser.dll", "ExBrowser Wait For Element", "x://span[contains(text(), \'Your registration could not be processed\')]", "Appear", 30) so, i want to combinate both element in in one column something like this: plugin command("ExBrowser.dll", "ExBrowser Wait For Element", "x://input[@class=\'LinkContinue\'] OR x://span[contains(text(), \'Your registration could not
  12. I have been trying to conduct scraping of a page using UBot standard, but have a problem. Because I have several same elements on the page. Normally advanced selector works fine, but after some time it shows error: Error: Error converting value True to type 'System.Collections.Generic.List'1 [system.String]'. If I only had possibility to use XPATH, I could resolve this easily, but UBot does not have it. Any other ideas?
×
×
  • Create New...