Can you check does it work? Make change as you required 

" By container = By.xpath("//*[@id=\"wishlistlogin\"]/div");
        WebDriverWait wait = new WebDriverWait(driver, 10);
        
wait.until(ExpectedConditions.presenceOfAllElementsLocatedBy(container));
                
        WebElement textElement = 
driver.findElement(By.className("add-to-wishlist"));
        String textBeforeAjax = textElement.getText().trim();
        System.out.println(textBeforeAjax);
        driver.findElement(By.className("add-to-wishlist")).click();
        
        By loader = By.className("widgetPickup");
        
wait.until(ExpectedConditions.invisibilityOfElementLocated(loader)); "




On Tuesday, June 19, 2018 at 3:08:59 PM UTC-4, Alexander Joseph wrote:
>
> I've posted this before but havent gotten any response. If more 
> information is needed let me know and I'll get you anything I can.
>
> I basically want to use forms in Bootstrap 4 modals for my CRUD operations 
> but cant really find a good tutorial or references to work from. I'm newer 
> to Django still. I'm sure this is a common question/application so theres 
> got to be some material out there that can help a novice like me. Has 
> anyone had some success with implementing this? I'm using CBVs so something 
> that works with CBVs would be ideal. Any help, advice, or suggestions would 
> be much appreciated
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/84b80cbe-0009-47d8-ab87-e0342d583c72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to