Jump to content
UBot Underground

Exbrowser In Shopify Admin Area


Recommended Posts

Hi everyone,

 

I am trying to write inside input fields inside the admin area in shopify, with no results.

 

With exBroswer inside the shopify admin area even trying millions of combination between "scroll to element" "move mouse" and click I just can't write inside the input fields.

 

I can't find a way to activate it properly in order to be able write inside the input field and eventually write inside.
I tried with type text, change elemnt value, etc... but nothing happens.

 

Hopefully here someone have any ideas?

 

Thank you!!!

Link to post
Share on other sites

I found the solution. Basically it was a problem to identify more precisely the field with xpath, now it is working.

 

In order to solve the problem in case someone will get in the same trouble I did:

 

This in order to identify the proper identify the exact path, in this case I try to scrape the placeholder:

 

    set(#yup,$plugin function("ExBrowser.dll", "$ExBrowser Scrape Element Attribute", "//*[@id=\"weight_based_shipping_rate_browser_modal\"]/form/div[2]/div[1]/div[2]/div/label/..//input[contains(@name,\"rate_name\")]", "placeholder"),"Global")

 

And then just click and type it and it works:

    plugin command("ExBrowser.dll", "ExBrowser Click", "//*[@id=\"weight_based_shipping_rate_browser_modal\"]/form/div[2]/div[1]/div[2]/div/label/..//input[contains(@name,\"rate_name\")]")
    plugin command("ExBrowser.dll", "ExBrowser Type Text", "//*[@id=\"weight_based_shipping_rate_browser_modal\"]/form/div[2]/div[1]/div[2]/div/label/..//input[contains(@name,\"rate_name\")]", "2343twddsasd")

 

Of course now I need to imrove the code writing a more efficient xpath, but in case this prove it works.

}

  • Like 1
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...