I have a web page, while loading the page it has one more call, for this call I need to change the base url
the below is the code snippet.
// url : www.abc.com/....
final WebDriverWrapper webDriverWrapper = webdriver.generateChromedriver();
final WebDriver driver = webDriverWrapper.getDriver();
driver.get(url);
driver.manage().timeouts().implicitlyWait(90, TimeUnit.SECONDS);
For example I'm loading this url www.abc.com/getDetails...... While loading this, this page has one more call
getInnerDetails
This getInnerDetails I need to call like below. www.xyz.com/getInnerDetails
I'm new to this area, please give me some input. Is it possible to change the url like this in selenium.
But now the call gets failed since it is loading like this www.abc.com/getInnerDetails