I am currently facing a challenge with setting the "Buy It Now" price on an eBay listing that has been advanced.
Here is the URL:
The code I am using includes:
String BINCSS = "#binPrice";
String BINXPath = ".//*[@id='binPrice']";
I want to set the "Buy It Now" price as a fixed price instead of an Auction price. My method involves first clicking on the "Fixed Price" tab and then inputting the price using the XPath / CSS mentioned previously.
This process works, but it inputs the price into the wrong field - specifically, it places the price in the "Buy It Now" field under "Auction", rather than in the desired "Fixed Price" tab.
Can someone provide guidance on how to correctly enter the fixed price in the "Buy It Now" text box?
Thank you.