How can I take only the blue part like in the photo?

How can I take only the blue part like in the photo?

site// Temel Bilgiler | İstanbul Kıyamet Vakti Wikia | Fandom

First question. Have you permission to do that?

https://www.fandom.com/terms-of-use

1 Like

Are you trying to scrape the site?
Press the shortcut ctrl + u on your keyboard. select the area you want that contains the blue area.

Many of the current sites are not fully rendered server-side, some use Javascript frameworks (This community, for example), and this affects the forms of scrape

You Can Try This Evaluate Javascript In Webviewer

(function() {  
var TextData = new Object();
    TextList = document.getElementsByTagName("p");
    for(var i = 0; i < TextList.length; i++)
{
        TextData[i] = TextList[i].innerText; }


return JSON.stringify(TextData);
})();

It Will Return the text list in json format Like This

  "0": "İstanbul : Kıyamet Vakti",
  "1": "Kurulum",
  "2": "Üyelik Yaratma",
  "3": "Karakter Arka Planı",
  "4": "Karakter Yaratma",
  "5": "Sınıflar",
  "6": "Meslekler",
  "7": "Yetenekler",
  "8": "Tılsım Sistemi",
  "9": "Efsunlar",
  "10": "Efsunlar ve Anlamları",
  "11": "Karakter Penceresi",
  "12": "Mesajlaşma Penceresi",
  "13": "Klan Savaşları, Er Meydanı",
  "14": "Klan Rütbeleri",
  "15": "Klan Parası ve Şan Puanı",
  "16": "Grup Bölgeleri",
  "17": "Grup Bölgesi Rehberleri",
  "18": "Kabadayı Modu",
  "19": "Lonca Sistemi",
  "20": "Sıkça Sorulan Sorular",
  "21": "Kullanım Sözleşmesi"
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.