borsaro 1 Posted June 25, 2018 Report Share Posted June 25, 2018 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!!! Quote Link to post Share on other sites
borsaro 1 Posted June 25, 2018 Author Report Share Posted June 25, 2018 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.} 1 Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.