Jump to content
UBot Underground

[Sell] ►►Xpath Builder Pro◄◄


Recommended Posts

Bought this tool a few day's ago and must say it saves me tons of time with the HTTP and Exbrowser plugin. Can advise anyone to buy this tool. Amazing job Dan, keep the good work coming. 10/10

 

Awesome! Thanks a lot for sharing your experience. Much appreciated!

 

Dan

Link to post
Share on other sites
  • 2 weeks later...
  • Replies 169
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Regex isn't really designed for html documents and its very easy for a complex page to cause issues. You will also find you will have to make more and more complex regex to achieve certain things.   w

XPath Builder Pro has been updated 8/1/2021  and can  be downloaded inside of your account on https://www.exbrowser.net from your members dashboard Download and replace your files wi

Hi Dan,   Disregard, I replied too soon and made newbie mistake, I didn't realize I could override the "attribute to get" field and type in "content". Duh!   Sorry for the bother... but thank you for

Posted Images

>>New Update Is Ready!<<

 

 

It took us a while, but we listened to you. The new license server will now support multiple PC activation's.

And you can reset the activation's on your own via a nice user interface.

 

Existing customers should check their inbox.

If you run into a problem:

support(AD)bot-factory.com

Link to post
Share on other sites

Hello Dan.

Please, can you make application shortcut is colored?

In win 10 it's unvisible.

Kingest Regards

 

http://savepic.su/5965784.png

Thanks a lot for letting us know. I've not updated to win10 yet, so I can't test it. But I will take a look as soon as possible.

 

Dan

Link to post
Share on other sites
  • 2 weeks later...

How I Code Video


Here's a new Video Tutorial for you guys.

Some people asked, why Xpath Expressions created in Xpath Builder Pro, don't work in ExBrowser plugin sometimes.

So here's how that stuff works exactly:


>>Click Here to watch the Video<<

Link to post
Share on other sites
  • 4 weeks later...
  • 2 weeks later...

can you give one example where select second item value

 

say we have this url

 

http://network.ubotstudio.com/forum/index.php?/topic/17784-sell-%E2%96%BA%E2%96%BAxpath-builder-pro%E2%97%84%E2%97%84/page-6

 

and i wana reply to your 106 post

 

so I have this

 

//a[contains(text(),"#106")]  and //a[@title="Reply directly to this post"]

 

so combine both

 

//a[contains(text(),"#106")][@title="Reply directly to this post"]

 

is this correct ?

Link to post
Share on other sites

can you give one example where select second item value

 

say we have this url

 

http://network.ubotstudio.com/forum/index.php?/topic/17784-sell-%E2%96%BA%E2%96%BAxpath-builder-pro%E2%97%84%E2%97%84/page-6

 

and i wana reply to your 106 post

 

so I have this

 

//a[contains(text(),"#106")]  and //a[@title="Reply directly to this post"]

 

so combine both

 

//a[contains(text(),"#106")][@title="Reply directly to this post"]

 

is this correct ?

 

No.

 

It would be:

 

//a[contains(text(),"#106")]/a[@title="Reply directly to this post"]

 

But only if the second A element is right after the first one!

 

Here's a nice little tutorial:

http://www.tutorialspoint.com/xpath/index.htm

 

You can find a lot more free tutorials via Google.

Spent a couple of hours to study Xpath. It will pay of in the end.

 

Dan

Link to post
Share on other sites

No.

 

It would be:

 

//a[contains(text(),"#106")]/a[@title="Reply directly to this post"]

 

But only if the second A element is right after the first one!

 

Here's a nice little tutorial:

http://www.tutorialspoint.com/xpath/index.htm

 

You can find a lot more free tutorials via Google.

Spent a couple of hours to study Xpath. It will pay of in the end.

 

Dan

 

I already tested all just wana see one live example with mutiselect.

Link to post
Share on other sites

no response ?

 

can you please give me one working example where second A element is not right after the first one! and first element have specific value.

 

like //a[contains(text(),"#106")]/a[@title="Reply directly to this post"]

 

i tried many but no luck so far.

Link to post
Share on other sites

He used one slash , you used double slash in between. What is the difference?

1 is looking at the next element. And two are looking at every element within the first one that was selected.

 

Dan

  • Like 1
Link to post
Share on other sites

Sure:

 

//a[contains(text(),"#106")]//a[@title="Reply directly to this post"]

 

 

Cheers

Dan

 

this is the problem. I tested on xpath builder and its showing 0 element selected.

Link to post
Share on other sites

Example:

 

Site:

http://www.ubotstudio.com/playground/difficult-form

 

XPath Example1:

//h1[@class="logo ir"]/a/@title

 

XPath Example2:

//div[@id="sticky-nav"]//a[@title="Home"]/@title

Keep in mind, in Xpath Builder it will extract innertext by default. Or you have to specify the attribute with /@attribute.
In ExBrowser or other Ubot plugins it's different.

All of that is explained here:
https://botfactory.helpdocs.com/exbrowser-plugin/how-i-code-xpath-builder-pro-with-exbrowser-plugin

also a good watch:
https://botfactory.helpdocs.com/exbrowser-plugin/ubot-expressions-xpath-expressions-howto-video

PS: I can NOT teach you Xpath as part of this Xpath Builder Pro or ExBrowser. You have to learn that on your own! There are million tutorials about that out there!

Hope this helps.
Dan
 

Link to post
Share on other sites

Example:

 

Site:

http://www.ubotstudio.com/playground/difficult-form

 

XPath Example1:

//h1[@class="logo ir"]/a/@title

 

XPath Example2:

//div[@id="sticky-nav"]//a[@title="Home"]/@title

 

Keep in mind, in Xpath Builder it will extract innertext by default. Or you have to specify the attribute with /@attribute.

In ExBrowser or other Ubot plugins it's different.

 

All of that is explained here:

https://botfactory.helpdocs.com/exbrowser-plugin/how-i-code-xpath-builder-pro-with-exbrowser-plugin

 

also a good watch:

https://botfactory.helpdocs.com/exbrowser-plugin/ubot-expressions-xpath-expressions-howto-video

 

PS: I can NOT teach you Xpath as part of this Xpath Builder Pro or ExBrowser. You have to learn that on your own! There are million tutorials about that out there!

 

Hope this helps.

Dan

 

 

I am not asking to teach me xpath

 

I am just asking for one live example

 

your bot not working so i think its related to your bot

 

 

Sure:

 

//a[contains(text(),"#106")]//a[@title="Reply directly to this post"]

 

 

Cheers

Dan

 

Your own example not working on bot.

Link to post
Share on other sites

 

Bot-Factory (Dan), on 08 Oct 2015 - 06:22 AM, said:snapback.png

Sure:

 

//a[contains(text(),"#106")]//a[@title="Reply directly to this post"]

 

 

Cheers

Dan

 

Your own example not working on bot.

 

 

 

Your own example not working on bot.

 

I didn't test the forum one. This was just to show you how to use // if you want to select an element that is deeper in the structure.

The other example works fine. Look at that one:

http://network.ubotstudio.com/forum/index.php/topic/17784-sell-►►xpath-builder-pro◄◄/?p=114616

 

Dan

 

Link to post
Share on other sites

I didn't test the forum one. This was just to show you how to use // if you want to select an element that is deeper in the structure.

The other example works fine. Look at that one:

http://network.ubotstudio.com/forum/index.php/topic/17784-sell-►►xpath-builder-pro◄◄/?p=114616

 

Dan

 

 

And with our powerful Tutorials we have you covered 100%

 

Do you explain how to use it?

A: Yes, you will get access to our tutorials. And if something is not covered, we will add videos or do a webinar. But it's really simple to use the applicatio. So after you test it, you will master it in a couple of minutes.

 

 

I just ask for one live example with contain@text.

 

Also curious what include in support ?

Link to post
Share on other sites

I just ask for one live example with contain@text.

 

Also curious what include in support ?

 

If you are unhappy with something Django, send me a support ticket with your Paypal address and I will issue a refund. 

No problem at all.

 

If you have a specific question for a specific site, send us a support ticket with all the details.

The exact site url, a description of what elements / attributes you want to extract, a screenshot of the related HTML code and your Xpath Expression.

 

Here's another example:

<book category="web">
  <title lang="en">XQuery Kick Start</title>
  <author>James McGovern</author>
  <author>Per Bothner</author>
  <author>Kurt Cagle</author>
  <author>James Linn</author>
  <author>Vaidyanathan Nagarajan</author>
  <year>2003</year>
  <price>49.99</price>
</book>

Xpath Expression

//book/title[contains(text(),"XQuery Kick Start")]/../author[contains(text(),"Kurt")]

 

Screenshot:

http://screencast.com/t/ZjapqLfaZ4t

 

Happy?

 

Dan

  • Like 1
Link to post
Share on other sites
  • 1 month later...

I'd like to get this, but not something I do alot of so I cant bring myself to justify the cost. If you can do like you did with the json path builder (which I bought) and offer a 1pc licence or something for around what I paid for that (37 I think I paid) I'd buy it... or if you want to pm me a coupon code or something bringing it to around that price since I've bought several of your items in the past, that would be great. if not, its cool... just throwing it out there:)

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...